OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wstart
(Results
1 - 3
of
3
) 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
...]
/frameworks/av/services/audioflinger/
AudioResamplerFirGen.h
32
* to calculate sine(
wstart
+ n * wstep) or cosine(
wstart
+ n * wstep)
35
* e^i(
wstart
+wstep) = 2cos(wstep) * e^i(
wstart
) - e^i(
wstart
-wstep)
39
* sin(
wstart
+wstep) = 2cos(wstep) * sin(
wstart
) - sin(
wstart
-wstep)
42
* e^i(
wstart
+wstep) = e^i(
wstart
) * e^i(wstep), which takes up t
526
double
wstart
= fstart*(2.*M_PI);
local
[
all
...]
/external/boringssl/src/crypto/bn/
exponentiation.c
432
int i, j, bits, ret = 0,
wstart
, window;
local
505
wstart
= bits - 1; /* The top bit of the window */
515
if (BN_is_bit_set(p,
wstart
) == 0) {
521
if (
wstart
== 0) {
524
wstart
--;
528
/* We now have
wstart
on a 'set' bit, we now need to work out
535
if (
wstart
- i < 0) {
538
if (BN_is_bit_set(p,
wstart
- i)) {
562
wstart
-= wend + 1;
564
if (
wstart
< 0)
621
int i, j, bits, ret = 0,
wstart
, window;
local
[
all
...]
Completed in 105 milliseconds