/external/jpeg/ |
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/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_ppc_defs.c | 756 i->Pin.Shft.op = op; 757 i->Pin.Shft.sz32 = sz32; 758 i->Pin.Shft.dst = dst; 759 i->Pin.Shft.srcL = srcL; 760 i->Pin.Shft.srcR = srcR; [all...] |
host_ppc_defs.h | 525 Bool sz32; /* mode64 has both 32 and 64bit shft */ 529 } Shft;
|
guest_ppc_toIR.c | 2494 UInt shft, mask; local 2644 UInt shft, mask; local 6447 UChar shft; local [all...] |
/external/valgrind/main/helgrind/ |
libhb_core.c | 770 Word bix, shft, mask, prep; local 773 shft = 2 * (ix & 3); /* 0, 2, 4 or 6 */ 774 mask = 3 << shft; 775 prep = b2 << shft; 781 Word bix, shft; local 784 shft = 2 * (ix & 3); /* 0, 2, 4 or 6 */ 785 return (arr[bix] >> shft) & 3; [all...] |