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

/freebsd-11.0-release/lib/libedit/
H A Dtokenizer.c78 Char *wstart; /* Beginning of next word */ local
96 if ((tok->flags & TOK_KEEP) || tok->wptr != tok->wstart) {
97 tok->argv[tok->argc++] = tok->wstart;
99 tok->wstart = ++tok->wptr;
137 tok->wstart = tok->wspace;
154 tok->wstart = tok->wspace;
207 co = (int)(tok->wptr - tok->wstart);
409 tok->wstart = (tok->wstart - tok->wspace) + s;
426 co = (int)(tok->wptr - tok->wstart);
[all...]
/freebsd-11.0-release/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.0-release/crypto/openssl/crypto/bn/
H A Dbn_exp.c273 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
341 wstart = bits - 1; /* The top bit of the window */
348 if (BN_is_bit_set(p, wstart) == 0) {
352 if (wstart == 0)
354 wstart--;
358 * We now have wstart on a 'set' bit, we now need to work out how bit
362 j = wstart;
366 if (wstart - i < 0)
368 if (BN_is_bit_set(p, wstart - i)) {
389 wstart
406 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
1345 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
[all...]

Completed in 47 milliseconds