HomeSort by relevance Sort by last modified time
    Searched refs:shift (Results 1 - 25 of 994) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
misc-intrinsics.h 40 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/
_ReadSLEB.c 6 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;
_ReadULEB.c 6 unsigned shift = 0; local
13 result |= (byte & 0x7f) << shift;
16 shift += 7;
  /external/chromium_org/ui/events/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...]
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_leb128.h 23 size_t shift = 0; local
28 value |= static_cast<uint32_t>(byte & 127) << shift;
29 shift += 7;
49 size_t shift = 0; local
54 value |= (static_cast<ssize_t>(byte & 127) << shift);
55 shift += 7;
58 if (shift < size && (byte & 64))
59 value |= -(static_cast<ssize_t>(1) << shift);
  /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/aac/libFDK/src/arm/
scale_arm.cpp 106 /* 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/chrome/test/remoting/
key_code_conv.h 18 // 3. The shift state.
21 char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift);
key_code_conv.cc 16 char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift) {
24 *shift = false;
31 *shift = true;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationPolicy.cpp 38 bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy* policy)
45 if (!newTabModifier && !shift && !alt)
50 if (shift)
55 if (shift)
  /external/aac/libSBRdec/src/
transcendent.h 128 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/
ieee754.c 14 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/
ihevcd_itrans_recon_dc.c 94 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 - 1)
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
b64.js 11 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 += 8
    [all...]
  /external/chromium_org/base/
bits.h 23 int shift = (1 << i); local
24 uint32 x = value >> shift;
27 log += shift;
  /external/chromium_org/third_party/brotli/src/woff2/
port.h 33 int shift = (1 << i);
34 uint32 x = value >> shift;
37 log += shift;
  /external/compiler-rt/lib/builtins/arm/
clzsi2.S 39 * if ((r0 >> SHIFT) == 0)
40 * r1 += SHIFT;
42 * r0 >>= SHIFT;
43 * for descending powers of two as SHIFT.
46 #define BLOCK(shift) \
47 lsrs r2, r0, shift; \
49 addeq r1, shift \
  /external/ltrace/sysdeps/linux-gnu/arm/
regs.c 78 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 = 31
    [all...]
  /external/libhevc/common/mips/
ihevc_platform_macros.h 58 #define SHR_NEG(val,shift) ((shift>0)?(val>>shift):(val<<(-shift)))
59 #define SHL_NEG(val,shift) ((shift<0)?(val>>(-shift)):(val<<shift))
  /external/compiler-rt/lib/builtins/
floatsisf.c 43 // Shift a into the significand field, rounding if it is a right-shift
45 const int shift = significandBits - exponent; local
46 result = (rep_t)a << shift ^ implicitBit;
48 const int shift = exponent - significandBits; local
49 result = (rep_t)a >> shift ^ implicitBit;
50 rep_t round = (rep_t)a << (typeWidth - shift);
floatunsisf.c 35 // Shift a into the significand field, rounding if it is a right-shift
37 const int shift = significandBits - exponent; local
38 result = (rep_t)a << shift ^ implicitBit;
40 const int shift = exponent - significandBits; local
41 result = (rep_t)a >> shift ^ implicitBit;
42 rep_t round = (rep_t)a << (typeWidth - shift);
  /external/chromium_org/third_party/skia/src/core/
SkEdge.cpp 16 the points into FDot6. This is modulated by the shift parameter, which
20 or pt * 256 for antialiasing. This is implemented as 1 << (shift + 6).
23 or pt >> 8 for antialiasing. This is implemented as pt >> (10 - shift).
28 // away data in value, so just perform a modify up-shift
35 int shift) {
40 x0 = SkScalarRoundToFDot6(p0.fX, shift);
41 y0 = SkScalarRoundToFDot6(p0.fY, shift);
42 x1 = SkScalarRoundToFDot6(p1.fX, shift);
43 y1 = SkScalarRoundToFDot6(p1.fY, shift);
45 float scale = float(1 << (shift + 6))
282 int shift = fCurveShift; local
    [all...]
  /external/libhevc/common/
ihevc_chroma_itrans_recon.c 92 * @param[in] shift
93 * Output shift
120 WORD32 shift; local
129 shift = IT_SHIFT_STAGE_1;
130 add = 1 << (shift - 1);
153 CLIP_S16(((e[0] + o[0] + add) >> shift));
155 CLIP_S16(((e[1] + o[1] + add) >> shift));
157 CLIP_S16(((e[1] - o[1] + add) >> shift));
159 CLIP_S16(((e[0] - o[0] + add) >> shift));
170 shift = IT_SHIFT_STAGE_2
    [all...]
  /external/chromium_org/v8/src/base/
bits-unittest.cc 34 TRACED_FORRANGE(uint32_t, shift, 0, 31) {
35 EXPECT_EQ(31u - shift, CountLeadingZeros32(1u << shift));
44 TRACED_FORRANGE(uint32_t, shift, 0, 31) {
45 EXPECT_EQ(shift, CountTrailingZeros32(1u << shift));
53 TRACED_FORRANGE(uint32_t, shift, 0, 31) {
54 EXPECT_TRUE(IsPowerOfTwo32(1U << shift));
55 EXPECT_FALSE(IsPowerOfTwo32((1U << shift) + 5U));
56 EXPECT_FALSE(IsPowerOfTwo32(~(1U << shift)));
    [all...]
  /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...]

Completed in 1244 milliseconds

1 2 3 4 5 6 7 8 91011>>