OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MIN_WORD
(Results
1 - 7
of
7
) sorted by null
/external/libgsm/src/
add.c
21
((x) <
MIN_WORD
?
MIN_WORD
: (x) > MAX_WORD ? MAX_WORD: (x))
37
if (a ==
MIN_WORD
&& b ==
MIN_WORD
) return MAX_WORD;
43
if (b ==
MIN_WORD
&& a ==
MIN_WORD
) return MAX_WORD;
53
return a < 0 ? (a ==
MIN_WORD
? MAX_WORD : -a) : a;
58
assert( a !=
MIN_WORD
|| b !=
MIN_WORD
);
preprocess.c
81
assert(s1 !=
MIN_WORD
);
short_term.c
46
* assert(*INVA !=
MIN_WORD
);
168
temp = *LARp ==
MIN_WORD
? MAX_WORD : -(*LARp);
286
tmp2 = ( tmp1 ==
MIN_WORD
&& tmp2 ==
MIN_WORD
295
tmp1 = ( tmp1 ==
MIN_WORD
&& sri ==
MIN_WORD
lpc.c
226
assert (*r !=
MIN_WORD
);
281
assert( *r !=
MIN_WORD
);
rpe.c
109
x[k] = ( L_result <
MIN_WORD
?
MIN_WORD
145
* assert(temp1 !=
MIN_WORD
);
long_term.c
936
assert(brp !=
MIN_WORD
);
/external/libgsm/inc/
private.h
45
#define
MIN_WORD
(-32767 - 1)
90
* #define GSM_MULT_R(a, b) (* word a, word b, !(a == b ==
MIN_WORD
) *) \
93
#define GSM_MULT_R(a, b) /* word a, word b, !(a == b ==
MIN_WORD
) */ \
96
# define GSM_MULT(a,b) /* word a, word b, !(a == b ==
MIN_WORD
) */ \
113
* ? MAX_WORD : ltmp <=
MIN_WORD
?
MIN_WORD
: ltmp)
118
((ulongword)((ltmp = (longword)(a) + (longword)(b)) -
MIN_WORD
) > \
119
MAX_WORD -
MIN_WORD
? (ltmp > 0 ? MAX_WORD :
MIN_WORD
) : ltmp)
123
? MAX_WORD : ltmp <=
MIN_WORD
? MIN_WORD : ltmp
[
all
...]
Completed in 35 milliseconds