Searched refs:shift (Results 1 - 25 of 1142) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Db64.js11 var shift = 0;
17 shift += 8;
18 while (shift >= 6) {
19 var i = (accu >> (shift - 6)) & 63;
21 shift -= 6;
24 if (shift) {
26 shift += 8;
27 var i = (accu >> (shift - 6)) & 63;
39 var shift = 0;
45 shift
[all...]
/external/chromium_org/v8/src/
H A Dmisc-intrinsics.h40 int result, shift; local
42 shift = (value > 0xFFFF) << 4;
43 value >>= shift; local
44 result = shift;
46 shift = (value > 0xFF) << 3;
47 value >>= shift; local
48 result |= shift;
50 shift = (value > 0xF) << 2;
51 value >>= shift; local
52 result |= shift;
55 value >>= shift; local
[all...]
/external/libunwind/src/mi/
H A D_ReadSLEB.c6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
14 shift += 7;
19 if (shift < 8 * sizeof (unw_word_t) && (byte & 0x40) != 0)
21 result |= ((unw_word_t) -1) << shift;
H A D_ReadULEB.c6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
16 shift += 7;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1403.js32 a.shift();
36 a.shift();
H A Dregress-358090.js8 y.shift();
H A Dregress-299979.js33 assertThrows(function() { list.shift(); }, TypeError);
H A Dregress-crbug-405517.js10 for (var i = 0; i < 4; i++) e.shift();
H A Dregress-empty-fixed-double-array.js8 a.shift();
/external/chromium_org/ui/events/keycodes/
H A Dkeyboard_code_conversion.cc13 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...]
/external/srec/srec/cfront/
H A Dsh_down.h35 static PINLINE int fixed_point_convert(float xx, int shift);
36 static PINLINE int shift_up_inline(int value, unsigned int shift);
37 static PINLINE int shift_down_inline(int value, unsigned int shift);
42 static PINLINE int shift_up_inline(int value, unsigned int shift) argument
47 ASSERT(shift > 0);
53 retval = temp << shift;
64 static PINLINE int shift_down_inline(int value, unsigned int shift) argument
67 if (shift-- == 0)
70 return (((value >> shift) + 1) >> 1);
72 return (-((((-value) >> shift)
75 fixed_point_convert(float xx, int shift) argument
[all...]
H A Dlog_tabl.c61 logtab->shift = (int)(val + 0.5);
84 int log_lookup(log_table_info *logtab, int operand, int shift) argument
94 shift++;
98 shift++;
102 log_report("tab: %d %d -> %d\n", operand, shift,
103 (int)((shift) *(logtab->shift) + logtab->table[operand]));
105 return ((int)((shift) *(logtab->shift) + logtab->table[operand]));
122 int ii, aa, bb, cc, value, shift; local
[all...]
/external/openfst/src/include/fst/extensions/ngram/
H A Dnthbit.h26 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/aac/libFDK/src/arm/
H A Dscale_arm.cpp106 /* It performs a fMultDiv2 and increments shift by 1 */
107 int shift = scalefactor + 1; local
110 shift = fixmin_I(shift,(INT)DFRACT_BITS-1);
112 if (shift >= 0)
124 tmp0 <<= shift; local
125 tmp1 <<= shift; local
126 tmp2 <<= shift; local
127 tmp3 <<= shift; local
137 tmp0 <<= shift; local
154 tmp0 >>= shift; local
155 tmp1 >>= shift; local
156 tmp2 >>= shift; local
157 tmp3 >>= shift; local
167 tmp0 >>= shift; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DNavigationPolicy.cpp38 bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy* policy) argument
45 if (!newTabModifier && !shift && !alt)
50 if (shift)
55 if (shift)
/external/aac/libSBRdec/src/
H A Dtranscendent.h128 int shift; local
138 shift = (int)(a_e - b_e);
140 shiftAbs = (shift>0)? shift : -shift;
142 shiftedMantissa = (shift>0)? (FX_SGL2FX_DBL(b_m) >> shiftAbs) : (FX_SGL2FX_DBL(a_m) >> shiftAbs);
143 otherMantissa = (shift>0)? FX_SGL2FX_DBL(a_m) : FX_SGL2FX_DBL(b_m);
144 *ptrSum_e = (shift>0)? a_e : b_e;
147 /* shift by 1 bit to avoid overflow */
166 int shift; local
215 int preShift, postShift, index, shift; local
271 int preShift, postShift, index, shift; local
347 int shift = result_e - *destScale; local
[all...]
/external/fio/lib/
H A Dieee754.c14 int shift; local
32 shift = 0;
35 shift++;
39 shift--;
47 exp = shift + ((1 << (expbits - 1)) - 1); // shift + bias
56 long long shift; local
70 shift = ((i >> significandbits) & ((1LL << expbits) - 1)) - bias;
71 while (shift > 0) {
73 shift
[all...]
/external/libhevc/decoder/
H A Dihevcd_itrans_recon_dc.c94 WORD32 add, shift; local
102 shift = IT_SHIFT_STAGE_1;
103 add = 1 << (shift - 1);
104 dc_value = CLIP_S16((quant_out * 64 + add) >> shift);
105 shift = IT_SHIFT_STAGE_2;
106 add = 1 << (shift - 1);
107 dc_value = CLIP_S16((dc_value * 64 + add) >> shift);
124 WORD32 add, shift; local
133 shift = IT_SHIFT_STAGE_1;
134 add = 1 << (shift
[all...]
/external/chromium_org/base/
H A Dbits.h23 int shift = (1 << i); local
24 uint32 x = value >> shift;
27 log += shift;
/external/chromium_org/third_party/brotli/src/woff2/
H A Dport.h33 int shift = (1 << i);
34 uint32 x = value >> shift;
37 log += shift;
/external/compiler-rt/lib/builtins/arm/
H A Dclzsi2.S46 #define BLOCK(shift) \
47 lsrs r2, r0, shift; \
49 addeq r1, shift \
/external/chromium_org/chrome/test/remoting/
H A Dkey_code_conv.h18 // 3. The shift state.
21 char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift);
/external/chromium_org/v8/test/mjsunit/
H A Darray-shift3.js9 a.shift();
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dregs.c78 uint32_t shift; local
80 if (arm_get_register_offpc(proc, BITS(inst, 8, 11), &shift) < 0)
82 shift &= 0xff;
84 shift = BITS(inst, 7, 11);
96 res = shift >= 32 ? 0 : res << shift;
100 res = shift >= 32 ? 0 : res >> shift;
104 if (shift >= 32)
105 shift
[all...]
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/string/
H A Dstring.js43 returnString += splitParts.shift() + subsArguments.shift();

Completed in 516 milliseconds

1234567891011>>