Home
last modified time | relevance | path

Searched refs:MIN_WORD (Results 1 – 9 of 9) sorted by relevance

/external/libgsm/src/
Dadd.c21 ((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 );
Dshort_term.c168 temp = *LARp == MIN_WORD ? MAX_WORD : -(*LARp);
286 tmp2 = ( tmp1 == MIN_WORD && tmp2 == MIN_WORD
295 tmp1 = ( tmp1 == MIN_WORD && sri == MIN_WORD
Dlpc.c226 assert (*r != MIN_WORD);
281 assert( *r != MIN_WORD );
Dpreprocess.c81 assert(s1 != MIN_WORD);
Drpe.c109 x[k] = ( L_result < MIN_WORD ? MIN_WORD
Dlong_term.c936 assert(brp != MIN_WORD);
/external/libgsm/inc/
Dprivate.h45 #define MIN_WORD (-32767 - 1) macro
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)
125 # define GSM_ABS(a) ((a) < 0 ? ((a) == MIN_WORD ? MAX_WORD : -(a)) : (a))
/external/libgsm/add-test/
Dadd_test.dta14 ; - and + by itself mean MIN_WORD and MAX_WORD, respectively;
273 ; assert (a != MIN_WORD && b != MIN_WORD)
602 ; M_mult - - = + assert !(a == b && b == MIN_WORD)
646 ; M_mult_r - - = + assert !(a == b && b == MIN_WORD)
658 ; assert (a != MIN_WORD && b != MIN_WORD)
Dadd_test.c79 case '\0': return MIN_WORD;
128 w == MIN_WORD? "/-" : (w == MAX_WORD ? "/+" : ""));
140 (unsigned long)w, (long)w, w == MIN_WORD ? "/-"