HomeSort by relevance Sort by last modified time
    Searched refs:shft (Results 1 - 14 of 14) sorted by null

  /external/jpeg/
mips_jidctfst.c 149 #define IRIGHT_SHIFT(x,shft) \
151 (ishift_temp >> (shft)) | ((~((DCTELEM) 0)) << (DCTELEMBITS-(shft))) : \
152 (ishift_temp >> (shft)))
155 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft))
jidctfst.c 147 #define IRIGHT_SHIFT(x,shft) \
149 (ishift_temp >> (shft)) | ((~((DCTELEM) 0)) << (DCTELEMBITS-(shft))) : \
150 (ishift_temp >> (shft)))
153 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft))
jpegint.h 314 #define RIGHT_SHIFT(x,shft) \
316 (shift_temp >> (shft)) | ((~((INT32) 0)) << (32-(shft))) : \
317 (shift_temp >> (shft)))
320 #define RIGHT_SHIFT(x,shft) ((x) >> (shft))
jcphuff.c 79 #define IRIGHT_SHIFT(x,shft) \
81 (ishift_temp >> (shft)) | ((~0) << (16-(shft))) : \
82 (ishift_temp >> (shft)))
85 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft))
  /external/qemu/distrib/jpeg-6b/
jidctfst.c 147 #define IRIGHT_SHIFT(x,shft) \
149 (ishift_temp >> (shft)) | ((~((DCTELEM) 0)) << (DCTELEMBITS-(shft))) : \
150 (ishift_temp >> (shft)))
153 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft))
jpegint.h 314 #define RIGHT_SHIFT(x,shft) \
316 (shift_temp >> (shft)) | ((~((INT32) 0)) << (32-(shft))) : \
317 (shift_temp >> (shft)))
320 #define RIGHT_SHIFT(x,shft) ((x) >> (shft))
jcphuff.c 79 #define IRIGHT_SHIFT(x,shft) \
81 (ishift_temp >> (shft)) | ((~0) << (16-(shft))) : \
82 (ishift_temp >> (shft)))
85 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft))
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
entropy_coding.c 358 WebRtc_Word16 dither1_Q7, dither2_Q7, dither_gain_Q14, shft; local
376 shft = (WebRtc_Word16)(WEBRTC_SPL_RSHIFT_U32(seed, 25) & 15);
377 if (shft < 5)
383 else if (shft < 10)
411 shft = (WebRtc_Word16)(WEBRTC_SPL_RSHIFT_U32(seed, 25) & 1); /* either 0 or 1 */
413 bufQ7[k + shft] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(dither_gain_Q14, dither1_Q7) + 8192, 14);
414 bufQ7[k + 1 - shft] = 0;
1687 WebRtc_Word16 shft,tmp16a,tmp16c; local
1772 WebRtc_Word16 shft, tmp16a, tmp16b, tmp16c; local
    [all...]
lpc_masking_model.c 580 int shft; local
    [all...]
  /system/core/libpixelflinger/codeflinger/
MIPSAssembler.h 313 void SLL(int Rd, int Rt, int shft);
315 void SRL(int Rd, int Rt, int shft);
317 void SRA(int Rd, int Rt, int shft);
319 void ROTR(int Rd, int Rt, int shft); // mips32r2
MIPSAssembler.cpp     [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
entropy_coding.c 179 int k, shft; local
198 shft = (seed >> 25) & 15;
199 if (shft < 5) {
203 } else if (shft < 10) {
225 shft = (seed >> 25) & 1; /* Either 0 or 1 */
227 bufQ7[k + shft] = (((dither_gain_Q14 * dither1_Q7) + 8192) >> 14);
228 bufQ7[k + 1 - shft] = 0;
    [all...]
  /external/valgrind/main/helgrind/
libhb_core.c 771 Word bix, shft, mask, prep; local
774 shft = 2 * (ix & 3); /* 0, 2, 4 or 6 */
775 mask = 3 << shft;
776 prep = b2 << shft;
782 Word bix, shft; local
785 shft = 2 * (ix & 3); /* 0, 2, 4 or 6 */
786 return (arr[bix] >> shft) & 3;
    [all...]
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c 2586 UInt shft, mask; local
2734 UInt shft; local
6568 UChar shft; local
    [all...]

Completed in 713 milliseconds