/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))
|
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))
|
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))
|
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/ |
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))
|
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))
|
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/ |
lpc_masking_model.c | 580 int shft; local [all...] |
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/valgrind/main/VEX/priv/ |
host_mips_defs.c | 1134 i->Min.Shft.op = op; 1135 i->Min.Shft.sz32 = sz32; 1136 i->Min.Shft.dst = dst; 1137 i->Min.Shft.srcL = srcL; 1138 i->Min.Shft.srcR = srcR; [all...] |
host_ppc_defs.c | 777 i->Pin.Shft.op = op; 778 i->Pin.Shft.sz32 = sz32; 779 i->Pin.Shft.dst = dst; 780 i->Pin.Shft.srcL = srcL; 781 i->Pin.Shft.srcR = srcR; [all...] |
host_mips_defs.h | 444 Bool sz32; /* mode64 has both 32 and 64bit shft */ 448 } Shft;
|
host_ppc_defs.h | 561 Bool sz32; /* mode64 has both 32 and 64bit shft */ 565 } Shft; [all...] |
guest_ppc_toIR.c | 2586 UInt shft, mask; local 2734 UInt shft; local 6568 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/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...] |