/external/kernel-headers/original/linux/ |
bitops.h | 38 * @shift: bits to roll 40 static inline __u32 rol32(__u32 word, unsigned int shift) 42 return (word << shift) | (word >> (32 - shift)); 49 * @shift: bits to roll 51 static inline __u32 ror32(__u32 word, unsigned int shift) 53 return (word >> shift) | (word << (32 - shift));
|
/external/llvm/test/CodeGen/PowerPC/ |
2004-11-30-shr-var-crash.ll | 5 %shift.upgrd.1 = zext i8 %shamt to i64 ; <i64> [#uses=1] 6 %tr2 = ashr i64 1, %shift.upgrd.1 ; <i64> [#uses=0]
|
/external/openfst/src/include/fst/extensions/ngram/ |
nthbit.h | 26 uint32 shift = 0; local 30 shift += (32 & mask); 32 c = __builtin_popcount((v >> shift) & 0xffff); 35 shift += (16 & mask); 37 c = __builtin_popcount((v >> shift) & 0xff); 40 shift += (8 & mask); 42 return shift + ((nth_bit_bit_offset[(v >> shift) & 0xff] >>
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/ |
buildAll.bat | 37 if x%1==x-mapVersionTag set mapVersionTag=%2 && shift && shift && goto processcmdlineargs
38 if x%1==x-vm set vm=%2 && shift && shift && goto processcmdlineargs
39 if x%1==x-bc set bootclasspath=-Dbootclasspath=%2 && shift && shift && goto processcmdlineargs
40 if x%1==x-target set target=%2 && shift && shift && goto processcmdlineargs
41 if x%1==x-buildID set buildID=-DbuildId=%2 && shift && shift && goto processcmdlineargs [all...] |
/external/llvm/test/CodeGen/X86/ |
shift-double.ll | 5 %shift.upgrd.1 = zext i8 %C to i64 ; <i64> [#uses=1] 6 %Y = shl i64 %X, %shift.upgrd.1 ; <i64> [#uses=1] 11 %shift.upgrd.2 = zext i8 %C to i64 ; <i64> [#uses=1] 12 %Y = ashr i64 %X, %shift.upgrd.2 ; <i64> [#uses=1] 17 %shift.upgrd.3 = zext i8 %C to i64 ; <i64> [#uses=1] 18 %Y = lshr i64 %X, %shift.upgrd.3 ; <i64> [#uses=1] 23 %shift.upgrd.4 = zext i8 %C to i32 ; <i32> [#uses=1] 24 %X = shl i32 %A, %shift.upgrd.4 ; <i32> [#uses=1] 26 %shift.upgrd.5 = zext i8 %Cv to i32 ; <i32> [#uses=1] 27 %Y = lshr i32 %B, %shift.upgrd.5 ; <i32> [#uses=1 [all...] |
/external/llvm/test/CodeGen/SystemZ/ |
cmpxchg-01.ll | 4 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s -check-prefix=CHECK-SHIFT 8 ; - CHECK-SHIFT makes sure that the negated shift count used by the second 10 ; tested in CHECK. CHECK-SHIFT also checks that %r3 is not modified before 12 ; which shift %r3 left so that %b is at the high end of the word). 15 ; CHECK-MAIN: sllg [[SHIFT:%r[1-9]+]], %r3, 3 19 ; CHECK-MAIN: rll %r2, [[OLD]], 8([[SHIFT]]) 30 ; CHECK-SHIFT-LABEL: f1: 31 ; CHECK-SHIFT: sllg [[SHIFT:%r[1-9]+]], %r3, [all...] |
cmpxchg-02.ll | 4 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s -check-prefix=CHECK-SHIFT 8 ; - CHECK-SHIFT makes sure that the negated shift count used by the second 10 ; tested in CHECK. CHECK-SHIFT also checks that %r3 is not modified before 12 ; which shift %r3 left so that %b is at the high end of the word). 15 ; CHECK-MAIN: sllg [[SHIFT:%r[1-9]+]], %r3, 3 19 ; CHECK-MAIN: rll %r2, [[OLD]], 16([[SHIFT]]) 30 ; CHECK-SHIFT-LABEL: f1: 31 ; CHECK-SHIFT: sllg [[SHIFT:%r[1-9]+]], %r3, [all...] |
shift-01.ll | 10 %shift = shl i32 %a, 1 11 ret i32 %shift 19 %shift = shl i32 %a, 31 20 ret i32 %shift 28 %shift = shl i32 %a, 32 29 ret i32 %shift 32 ; Make sure that we don't generate negative shift amounts. 38 %shift = shl i32 %a, %sub 39 ret i32 %shift 47 %shift = shl i32 %a, %am [all...] |
shift-02.ll | 10 %shift = lshr i32 %a, 1 11 ret i32 %shift 19 %shift = lshr i32 %a, 31 20 ret i32 %shift 28 %shift = lshr i32 %a, 32 29 ret i32 %shift 32 ; Make sure that we don't generate negative shift amounts. 38 %shift = lshr i32 %a, %sub 39 ret i32 %shift 47 %shift = lshr i32 %a, %am [all...] |
shift-03.ll | 10 %shift = ashr i32 %a, 1 11 ret i32 %shift 19 %shift = ashr i32 %a, 31 20 ret i32 %shift 28 %shift = ashr i32 %a, 32 29 ret i32 %shift 32 ; Make sure that we don't generate negative shift amounts. 38 %shift = ashr i32 %a, %sub 39 ret i32 %shift 47 %shift = ashr i32 %a, %am [all...] |
shift-09.ll | 11 %shift = shl i32 %b, %add 12 ret i32 %shift 21 %shift = shl i32 %a, %add 22 ret i32 %shift 31 %shift = lshr i32 %b, %add 32 ret i32 %shift 41 %shift = lshr i32 %a, %add 42 ret i32 %shift 51 %shift = ashr i32 %b, %add 52 ret i32 %shift [all...] |
/external/chromium_org/v8/src/ |
misc-intrinsics.h | 63 int result, shift; local 65 shift = (value > 0xFFFF) << 4; 66 value >>= shift; local 67 result = shift; 69 shift = (value > 0xFF) << 3; 70 value >>= shift; local 71 result |= shift; 73 shift = (value > 0xF) << 2; 74 value >>= shift; local 75 result |= shift; 78 value >>= shift; local [all...] |
/external/v8/src/ |
misc-intrinsics.h | 63 int result, shift; local 65 shift = (value > 0xFFFF) << 4; 66 value >>= shift; local 67 result = shift; 69 shift = (value > 0xFF) << 3; 70 value >>= shift; local 71 result |= shift; 73 shift = (value > 0xF) << 2; 74 value >>= shift; local 75 result |= shift; 78 value >>= shift; local [all...] |
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
LVC_Mixer_SetTarget.c | 27 /* This function updates the private instance parameters: Shift,Target,*/ 30 /* This function caclulates the "Shift" required to provide the */ 34 /* MaxGain of 2.5, Shift = 2, Current=1.9/4=0.475, Target=2.5/4=0.625 */ 35 /* Therefore integer gain of 4 is provided by Left Shift of 2 and */ 50 LVM_INT32 Shift=0; 54 CurrentGain=pInstance->Current>>(16-pInstance->Shift); // CurrentGain in Q16.15 format 59 while(MaxGain>0){ // Update Shift required to provide integer gain 60 Shift++; 63 pInstance->Target=TargetGain<<(16-Shift); // Update fractional gain Target 64 pInstance->Current=CurrentGain<<(16-Shift); // Update fractional gain Curren [all...] |
/external/speex/libspeex/ |
fixed_generic.h | 45 #define SHR16(a,shift) ((a) >> (shift)) 46 #define SHL16(a,shift) ((a) << (shift)) 47 #define SHR32(a,shift) ((a) >> (shift)) 48 #define SHL32(a,shift) ((a) << (shift)) 49 #define PSHR16(a,shift) (SHR16((a)+((1<<((shift))>>1)),shift) [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
omxVCM4P10_DequantTransformResidualFromPairAndAdd_s.s | 50 shift RN 3 label 78 LDRSB shift,[pQPdiv,QP] ;// Shift = QP / 6 91 ;// 'Shift' ranges between [0,8] 92 ;// So we can shift the packed rowLuma values [0b|0a] with a single LSL operation 96 LSL rowLuma01,rowLuma01,shift 97 LSL rowLuma23,rowLuma23,shift 107 ;// We first calculate pVRow[armVCM4P10_PosToVCol4x4[i]]) << Shift which fits into 16 bits (above) 108 ;// Then the product pSrcDst[i] * (pVRow[armVCM4P10_PosToVCol4x4[i]] << Shift) is calculated 119 SMULTB temp1,SrcDst00,rowLuma23 ;// pSrcDst[1] * (pVRow[2]<<Shift) 195 shift RN 3 label [all...] |
/external/chromium_org/third_party/freetype/src/base/ |
fttrigon.c | 103 FT_Int shift; local 110 shift = 0; 113 /* determine msb bit index in `shift' */ 117 shift += 16; 122 shift += 8; 127 shift += 4; 132 shift += 2; 137 shift += 1; 140 if ( shift <= 27 ) 142 shift = 27 - shift 420 FT_Int shift; local 457 FT_Int shift; local 493 FT_Int shift; local [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/ |
program_parse.output | 856 ARBvp_10 shift, and go to state 1 857 ARBfp_10 shift, and go to state 2 881 $end shift, and go to state 5 905 OPTION shift, and go to state 7 917 IDENTIFIER shift, and go to state 10 918 USED_IDENTIFIER shift, and go to state 11 935 ADDRESS shift, and go to state 13 936 ALIAS shift, and go to state 14 937 ATTRIB shift, and go to state 15 938 PARAM shift, and go to state 1 [all...] |
/external/clang/test/Sema/ |
shift.c | 21 c = 1 << -1; // expected-warning {{shift count is negative}} 22 c = 1 >> -1; // expected-warning {{shift count is negative}} 28 c <<= -1; // expected-warning {{shift count is negative}} 29 c >>= -1; // expected-warning {{shift count is negative}} 30 c <<= 999999; // expected-warning {{shift count >= width of type}} 31 c >>= 999999; // expected-warning {{shift count >= width of type}} 32 c <<= CHAR_BIT; // expected-warning {{shift count >= width of type}} 33 c >>= CHAR_BIT; // expected-warning {{shift count >= width of type}} 34 c <<= CHAR_BIT+1; // expected-warning {{shift count >= width of type}} 35 c >>= CHAR_BIT+1; // expected-warning {{shift count >= width of type} [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
fixed_generic.h | 39 /** 16x32 multiplication, followed by a 16-bit shift right. Results fits in 32 bits */ 42 /** 16x32 multiplication, followed by a 16-bit shift right (round-to-nearest). Results fits in 32 bits */ 45 /** 16x32 multiplication, followed by a 15-bit shift right. Results fits in 32 bits */ 48 /** 32x32 multiplication, followed by a 31-bit shift right. Results fits in 32 bits */ 67 /** Arithmetic shift-right of a 16-bit value */ 68 #define SHR16(a,shift) ((a) >> (shift)) 69 /** Arithmetic shift-left of a 16-bit value */ 70 #define SHL16(a,shift) ((opus_int16)((opus_uint16)(a)<<(shift))) [all...] |
/external/qemu/ |
curses_keys.h | 31 #define SHIFT 0x0080 131 ['!'] = 2 | SHIFT, 132 ['@'] = 3 | SHIFT, 133 ['#'] = 4 | SHIFT, 134 ['$'] = 5 | SHIFT, 135 ['%'] = 6 | SHIFT, 136 ['^'] = 7 | SHIFT, 137 ['&'] = 8 | SHIFT, 138 ['*'] = 9 | SHIFT, 139 ['('] = 10 | SHIFT, [all...] |
/external/chromium_org/third_party/opus/src/silk/ |
MacroDebug.h | 547 static inline opus_int8 silk_LSHIFT8_(opus_int8 a, opus_int32 shift, char *file, int line){ 550 ret = a << shift; 551 fail |= shift < 0; 552 fail |= shift >= 8; 553 fail |= (opus_int64)ret != ((opus_int64)a) << shift; 556 fprintf (stderr, "silk_LSHIFT8(%d, %d) in %s: line %d\n", a, shift, file, line); 566 static inline opus_int16 silk_LSHIFT16_(opus_int16 a, opus_int32 shift, char *file, int line){ 569 ret = a << shift; 570 fail |= shift < 0; 571 fail |= shift >= 16 [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/pin/ |
README | 2 shortcut (Ctrl + Shift + P) to toggle pinning and unpinning of the current tab.
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/pin/ |
README | 2 shortcut (Ctrl + Shift + P) to toggle pinning and unpinning of the current tab.
|
/external/chromium_org/ui/base/keycodes/ |
keyboard_code_conversion.cc | 13 const bool shift = (flags & EF_SHIFT_DOWN) != 0; local 14 const bool upper = shift ^ ((flags & EF_CAPS_LOCK_DOWN) != 0); 22 if (shift) { 23 // following graphics chars require shift key to input. 65 return shift ? ")!@#$%^&*("[key_code - VKEY_0] : 89 return shift ? ':' : ';'; 91 return shift ? '+' : '='; 93 return shift ? '<' : ','; 95 return shift ? '_' : '-'; 97 return shift ? '>' : '.' [all...] |