HomeSort by relevance Sort by last modified time
    Searched full:shft (Results 26 - 42 of 42) sorted by null

12

  /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...]
  /external/llvm/test/CodeGen/X86/
2008-05-12-tailmerge-5.ll 27 %shft = lshr i64 %str.1, 8 ; <i64> [#uses=2]
29 %byte4 = trunc i64 %shft to i8 ; <i8> [#uses=1]
31 %shft5 = lshr i64 %shft, 8 ; <i64> [#uses=2]
  /external/chromium_org/third_party/libjpeg_turbo/
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))
jcarith.c 105 #define IRIGHT_SHIFT(x,shft) \
107 (ishift_temp >> (shft)) | ((~0) << (16-(shft))) : \
108 (ishift_temp >> (shft)))
111 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft))
  /external/jpeg/
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/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jcphuff.c 80 #define IRIGHT_SHIFT(x,shft) \
82 (ishift_temp >> (shft)) | ((~0) << (16-(shft))) : \
83 (ishift_temp >> (shft)))
86 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft))
  /external/qemu/distrib/jpeg-6b/
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/valgrind/main/VEX/priv/
host_mips_defs.c 1206 i->Min.Shft.op = op;
1207 i->Min.Shft.sz32 = sz32;
1208 i->Min.Shft.dst = dst;
1209 i->Min.Shft.srcL = srcL;
1210 i->Min.Shft.srcR = srcR;
    [all...]
host_ppc_defs.c 807 i->Pin.Shft.op = op;
808 i->Pin.Shft.sz32 = sz32;
809 i->Pin.Shft.dst = dst;
810 i->Pin.Shft.srcL = srcL;
811 i->Pin.Shft.srcR = srcR;
    [all...]
host_mips_defs.h 431 Bool sz32; /* mode64 has both 32 and 64bit shft */
435 } Shft;
host_ppc_defs.h 593 Bool sz32; /* mode64 has both 32 and 64bit shft */
597 } Shft;
    [all...]
guest_ppc_toIR.c 2717 UInt shft, mask; local
2877 UInt shft; local
6937 UChar 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/chromium_org/third_party/webrtc/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/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...]

Completed in 551 milliseconds

12