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

  /external/chromium_org/third_party/opus/src/celt/
fixed_generic.h 72 #define SHR32(a,shift) ((a) >> (shift))
77 #define PSHR32(a,shift) (SHR32((a)+((EXTEND32(1)<<((shift))>>1)),shift))
79 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
93 #define HALF32(x) (SHR32(x,1))
arch.h 158 #define SHR32(a,shift) (a)
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))
48 #define MULT16_32_Q16(a,b) ADD32(MULT16_16((a),SHR32((b),16)), SHR32(MULT16_16SU((a),((b)&0x0000ffff)),16))
59 #define SHR(a,b) SHR32(a,b)
182 static OPUS_INLINE int SHR32(opus_int64 a, int shift)
187 fprintf (stderr, "SHR32: inputs are not int: %d %d\n", (int)a, shift)
    [all...]
  /external/libopus/celt/
fixed_generic.h 72 #define SHR32(a,shift) ((a) >> (shift))
77 #define PSHR32(a,shift) (SHR32((a)+((EXTEND32(1)<<((shift))>>1)),shift))
79 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
93 #define HALF32(x) (SHR32(x,1))
arch.h 158 #define SHR32(a,shift) (a)
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))
48 #define MULT16_32_Q16(a,b) ADD32(MULT16_16((a),SHR32((b),16)), SHR32(MULT16_16SU((a),((b)&0x0000ffff)),16))
59 #define SHR(a,b) SHR32(a,b)
182 static OPUS_INLINE int SHR32(opus_int64 a, int shift)
187 fprintf (stderr, "SHR32: inputs are not int: %d %d\n", (int)a, shift)
    [all...]
  /external/speex/libspeex/
fixed_debug.h 132 static inline int SHR32(long long a, int shift)
137 fprintf (stderr, "SHR32: inputs are not int: %d %d\n", (int)a, shift);
142 fprintf (stderr, "SHR32: output is not int: %d\n", (int)res);
164 #define PSHR32(a,shift) (SHR32(ADD32((a),((EXTEND32(1)<<((shift))>>1))),shift))
165 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
269 #define MAC16_16_Q11(c,a,b) (EXTRACT16(ADD16((c),EXTRACT16(SHR32(MULT16_16((a),(b)),11)))))
270 #define MAC16_16_Q13(c,a,b) (EXTRACT16(ADD16((c),EXTRACT16(SHR32(MULT16_16((a),(b)),13)))))
271 #define MAC16_16_P13(c,a,b) (EXTRACT16(ADD32((c),SHR32(ADD32(4096,MULT16_16((a),(b))),13))))
fixed_generic.h 47 #define SHR32(a,shift) ((a) >> (shift))
50 #define PSHR32(a,shift) (SHR32((a)+((EXTEND32(1)<<((shift))>>1)),shift))
51 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift)))
arch.h 167 #define SHR32(a,shift) (a)

Completed in 31 milliseconds