Searched defs:SASR (Results 1 - 1 of 1) sorted by relevance

/external/libgsm/inc/
H A Dprivate.h51 #ifdef SASR /* flag: >> is a signed arithmetic shift right */
52 #undef SASR macro
53 #define SASR(x, by) ((x) >> (by)) macro
55 #define SASR(x, by) ((x) >= 0 ? (x) >> (by) : (~(-((x) + 1) >> (by)))) macro
56 #endif /* SASR */
91 * (0x0FFFF & SASR(((longword)(a) * (longword)(b) + 16384), 15))
94 (SASR( ((longword)(a) * (longword)(b) + 16384), 15 ))
97 (SASR( ((longword)(a) * (longword)(b)), 15 ))

Completed in 74 milliseconds