Searched refs:wstart (Results 1 – 3 of 3) sorted by relevance
| /NextBSD/crypto/openssl/crypto/bn/ |
| HD | bn_exp.c | 271 int i, j, bits, ret = 0, wstart, wend, window, wvalue; in BN_mod_exp_recp() local 334 wstart = bits - 1; /* The top bit of the window */ in BN_mod_exp_recp() 341 if (BN_is_bit_set(p, wstart) == 0) { in BN_mod_exp_recp() 345 if (wstart == 0) in BN_mod_exp_recp() 347 wstart--; in BN_mod_exp_recp() 355 j = wstart; in BN_mod_exp_recp() 359 if (wstart - i < 0) in BN_mod_exp_recp() 361 if (BN_is_bit_set(p, wstart - i)) { in BN_mod_exp_recp() 382 wstart -= wend + 1; in BN_mod_exp_recp() 385 if (wstart < 0) in BN_mod_exp_recp() [all …]
|
| /NextBSD/contrib/libreadline/ |
| HD | isearch.c | 326 int n, wstart, wlen, limit, cval; local 460 wstart = rl_point + cxt->search_string_index; 461 if (wstart >= rl_end) 468 cval = _rl_char_value (rl_line_buffer, wstart); 474 n = MB_NEXTCHAR (rl_line_buffer, wstart, 1, MB_FIND_NONZERO);; 482 wlen = n - wstart + 1; 488 for (; wstart < n; wstart++) 489 cxt->search_string[cxt->search_string_index++] = rl_line_buffer[wstart]; 495 wstart = rl_point + cxt->search_string_index; 496 if (wstart >= rl_end) [all …]
|
| /NextBSD/lib/libedit/ |
| HD | tokenizer.c | 78 Char *wstart; /* Beginning of next word */ in TYPE() local 96 if ((tok->flags & TOK_KEEP) || tok->wptr != tok->wstart) { in FUN() 97 tok->argv[tok->argc++] = tok->wstart; in FUN() 99 tok->wstart = ++tok->wptr; in FUN() 137 tok->wstart = tok->wspace; in TYPE() 154 tok->wstart = tok->wspace; in FUN() 207 co = (int)(tok->wptr - tok->wstart); in FUN() 409 tok->wstart = (tok->wstart - tok->wspace) + s; in FUN() 426 co = (int)(tok->wptr - tok->wstart); in FUN()
|