HomeSort by relevance Sort by last modified time
    Searched refs:wstart (Results 1 - 4 of 4) sorted by null

  /external/libedit/src/
tokenizer.c 79 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;
427 co = (int)(tok->wptr - tok->wstart);
    [all...]
  /external/openssl/crypto/bn/
bn_exp.c 254 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-=wend+1
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...]
  /frameworks/av/services/audioflinger/
AudioResamplerFirGen.h 30 * to calculate sine(wstart + n * wstep) or cosine(wstart + n * wstep)
33 * e^i(wstart+wstep) = 2cos(wstep) * e^i(wstart) - e^i(wstart-wstep)
37 * sin(wstart+wstep) = 2cos(wstep) * sin(wstart) - sin(wstart-wstep)
40 * e^i(wstart+wstep) = e^i(wstart) * e^i(wstep), which takes up t
523 double wstart = fstart*(2.*M_PI); local
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
exponentiation.c 419 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
489 wstart = bits - 1; /* The top bit of the window */
497 if (BN_is_bit_set(p, wstart) == 0) {
503 if (wstart == 0) {
506 wstart--;
510 /* We now have wstart on a 'set' bit, we now need to work out
517 if (wstart - i < 0) {
520 if (BN_is_bit_set(p, wstart - i)) {
544 wstart -= wend + 1;
547 if (wstart < 0)
604 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
    [all...]

Completed in 218 milliseconds