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

  /external/libgsm/inc/
private.h 46 #define MAX_WORD 32767
112 * ((ltmp = (longword)(a) + (longword)(b)) >= MAX_WORD \
113 * ? MAX_WORD : ltmp <= MIN_WORD ? MIN_WORD : ltmp)
119 MAX_WORD - MIN_WORD ? (ltmp > 0 ? MAX_WORD : MIN_WORD) : ltmp)
122 ((ltmp = (longword)(a) - (longword)(b)) >= MAX_WORD \
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/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;
short_term.c 168 temp = *LARp == MIN_WORD ? MAX_WORD : -(*LARp);
287 ? MAX_WORD
296 ? MAX_WORD
rpe.c 110 : (L_result > MAX_WORD ? MAX_WORD : L_result ));
  /external/hyphenation/
hyphen.c 522 #define MAX_WORD 256
528 char prep_word_buf[MAX_WORD];
537 if (word_size + 3 < MAX_WORD)
710 char prep_word_buf[MAX_WORD];
898 char * rep2_buf[MAX_WORD];
899 int pos2_buf[MAX_WORD];
900 int cut2_buf[MAX_WORD];
901 char hyphens2_buf[MAX_WORD];
    [all...]

Completed in 57 milliseconds