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

/external/chromium_org/third_party/opus/src/celt/
H A Dfixed_generic.h74 #define SHL32(a,shift) ((opus_int32)((opus_uint32)(a)<<(shift))) macro
79 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
83 #define SHL(a,shift) SHL32(a,shift)
H A Darch.h159 #define SHL32(a,shift) (a) macro
H A Dfixed_debug.h45 #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))
203 #define SHL32(a, shift) SHL32_(a, shift, __FILE__, __LINE__) macro
209 fprintf (stderr, "SHL32: inputs are not int: %lld %d in %s: line %d\n", a, shift, file, line);
217 fprintf (stderr, "SHL32: output is not int: %lld<<%d = %lld in %s: line %d\n", a, shift, res, file, line);
227 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
/external/libopus/celt/
H A Dfixed_generic.h74 #define SHL32(a,shift) ((opus_int32)((opus_uint32)(a)<<(shift))) macro
79 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
83 #define SHL(a,shift) SHL32(a,shift)
H A Darch.h159 #define SHL32(a,shift) (a) macro
H A Dfixed_debug.h45 #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))
203 #define SHL32(a, shift) SHL32_(a, shift, __FILE__, __LINE__) macro
209 fprintf (stderr, "SHL32: inputs are not int: %lld %d in %s: line %d\n", a, shift, file, line);
217 fprintf (stderr, "SHL32: output is not int: %lld<<%d = %lld in %s: line %d\n", a, shift, res, file, line);
227 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
/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
/external/chromium_org/third_party/speex/libspeex/
H A Darch.h168 #define SHL32(a,shift) (a) macro

Completed in 429 milliseconds