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

  /external/libopus/celt/
fixed_generic.h 90 #define SHL32(a,shift) ((opus_int32)((opus_uint32)(a)<<(shift)))
95 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
99 #define SHL(a,shift) SHL32(a,shift)
fixed_debug.h 45 #define MULT32_32_Q31(a,b) ADD32(ADD32(SHL32(MULT16_16(SHR32((a),16),SHR((b),16)),1), SHR32(MULT16_16SU(SHR32((a),16),((b)&0x0000ffff)),15)), SHR32(MULT16_16SU(SHR32((b),16),((a)&0x0000ffff)),15))
211 #define SHL32(a, shift) SHL32_(a, shift, __FILE__, __LINE__)
217 fprintf (stderr, "SHL32: inputs are not int: %lld %d in %s: line %d\n", a, shift, file, line);
225 fprintf (stderr, "SHL32: output is not int: %lld<<%d = %lld in %s: line %d\n", a, shift, res, file, line);
235 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
arch.h 208 #define SHL32(a,shift) (a)
  /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)))
55 #define SATURATE32PSHR(x,shift,a) (((x)>=(SHL32(a,shift))) ? (a) : \
56 (x)<=-(SHL32(a,shift)) ? -(a) : \
arch.h 168 #define SHL32(a,shift) (a)

Completed in 83 milliseconds