Home | History | Annotate | Download | only in inc

Lines Matching refs:MIN_WORD

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)
125 # define GSM_ABS(a) ((a) < 0 ? ((a) == MIN_WORD ? MAX_WORD : -(a)) : (a))