Searched refs:wstart (Results 1 - 3 of 3) sorted by path

/freebsd-11-stable/contrib/libreadline/
H A Disearch.c326 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
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_exp.c276 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
346 wstart = bits - 1; /* The top bit of the window */
353 if (BN_is_bit_set(p, wstart) == 0) {
357 if (wstart == 0)
359 wstart--;
363 * We now have wstart on a 'set' bit, we now need to work out how bit
367 j = wstart;
371 if (wstart - i < 0)
373 if (BN_is_bit_set(p, wstart - i)) {
394 wstart
411 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
1362 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
[all...]
/freebsd-11-stable/lib/libedit/
H A Dtokenizer.c79 Char *wstart; /* Beginning of next word */ local
97 if ((tok->flags & TOK_KEEP) || tok->wptr != tok->wstart) {
98 tok->argv[tok->argc++] = tok->wstart;
100 tok->wstart = ++tok->wptr;
138 tok->wstart = tok->wspace;
155 tok->wstart = tok->wspace;
208 co = (int)(tok->wptr - tok->wstart);
410 tok->wstart = (tok->wstart - tok->wspace) + s;
429 co = (int)(tok->wptr - tok->wstart);
[all...]

Completed in 120 milliseconds