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

/freebsd-10.0-release/lib/libedit/
H A Dtokenizer.c72 char *wstart; /* Beginning of next word */ member in struct:tokenizer
90 if ((tok->flags & TOK_KEEP) || tok->wptr != tok->wstart) {
91 tok->argv[tok->argc++] = tok->wstart;
93 tok->wstart = ++tok->wptr;
131 tok->wstart = tok->wspace;
148 tok->wstart = tok->wspace;
201 co = (int)(tok->wptr - tok->wstart);
402 tok->wstart = (tok->wstart - tok->wspace) + s;
420 co = (int)(tok->wptr - tok->wstart);
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bn/
H A Dbn_exp.c254 int i,j,bits,ret=0,wstart,wend,window,wvalue; local
321 wstart=bits-1; /* The top bit of the window */
328 if (BN_is_bit_set(p,wstart) == 0)
333 if (wstart == 0) break;
334 wstart--;
337 /* We now have wstart on a 'set' bit, we now need to work out
341 j=wstart;
346 if (wstart-i < 0) break;
347 if (BN_is_bit_set(p,wstart-i))
370 wstart
387 int i,j,bits,ret=0,wstart,wend,window,wvalue; local
993 int i,j,bits,ret=0,wstart,wend,window,wvalue; local
[all...]
/freebsd-10.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...]

Completed in 116 milliseconds