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

  /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 355 milliseconds