HomeSort by relevance Sort by last modified time
    Searched defs:SHL32 (Results 1 - 3 of 3) sorted by null

  /external/speex/libspeex/
fixed_debug.h 147 static inline int SHL32(long long a, int shift)
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)))
fixed_generic.h 48 #define SHL32(a,shift) ((a) << (shift))
51 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
arch.h 168 #define SHL32(a,shift) (a)

Completed in 21 milliseconds