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

/external/speex/libspeex/
H A Dfixed_generic.h48 #define SHL32(a,shift) ((a) << (shift)) macro
51 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
55 #define SATURATE32PSHR(x,shift,a) (((x)>=(SHL32(a,shift))) ? (a) : \
56 (x)<=-(SHL32(a,shift)) ? -(a) : \
H A Dfixed_debug.h147 static inline int SHL32(long long a, int shift) function
152 fprintf (stderr, "SHL32: inputs are not int: %d %d\n", (int)a, shift);
157 fprintf (stderr, "SHL32: output is not int: %d\n", (int)res);
165 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
H A Darch.h168 #define SHL32(a,shift) (a) macro

Completed in 137 milliseconds