HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 76 - 100 of 467) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/lib/Support/
DataExtractor.cpp 136 unsigned shift = 0; local
142 result |= uint64_t(byte & 0x7f) << shift;
143 shift += 7;
157 unsigned shift = 0; local
163 result |= uint64_t(byte & 0x7f) << shift;
164 shift += 7;
170 if (shift < 64 && (byte & 0x40))
171 result |= -(1ULL << 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...]
  /cts/tools/dasm/src/java_cup/
lalr_item.java 147 public lalr_item shift() throws internal_error method in class:lalr_item
151 /* can't shift if we have dot already at the end */
153 throw new internal_error("Attempt to shift past end of an lalr_item");
  /external/aac/libAACenc/src/
band_nrg.cpp 199 INT shift = -leadingBits; local
201 spec = mdctSpectrum[j]>>shift;
  /external/chromium_org/base/strings/
utf_offset_string_conversions.cc 93 // in |adjustments_on_adjusted_string| as we go. |shift| keeps track of the
97 // length. These are characters that will change |shift| as soon as we're
99 // |shift|.
100 size_t shift = 0; local
104 ((adjusted_iter->original_offset + shift +
106 // Entire |adjusted_iter| (accounting for its shift and including its
111 adjusted_iter->original_offset += shift;
112 shift += currently_collapsing;
115 } else if ((adjusted_iter->original_offset + shift) >
117 // |first_iter| comes before the |adjusted_iter| (as adjusted by |shift|)
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
gcd.c 288 int shift; local
299 shift = 0;
300 while (!BN_is_bit_set(B, shift)) {
302 shift++;
314 if (shift > 0) {
315 if (!BN_rshift(B, B, shift)) {
321 shift = 0;
322 while (!BN_is_bit_set(A, shift)) {
324 shift++;
336 if (shift > 0)
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftbbox.c 406 FT_Int shift; local
418 /* Necessarily, we need to shift `a', `b', and `c' so that the most */
430 shift = FT_MSB( FT_ABS( a ) | FT_ABS( b ) | FT_ABS( c ) );
432 if ( shift > 22 )
434 shift -= 22;
438 a >>= shift; local
439 b >>= shift; local
440 c >>= shift; local
444 shift = 22 - shift;
446 a <<= shift; local
447 b <<= shift; local
448 c <<= shift; local
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttpload.c 67 FT_Int shift; local
90 shift = 2;
98 face->num_locations = table_len >> shift;
102 shift = 1;
110 face->num_locations = table_len >> shift;
122 ( (FT_Long)( face->root.num_glyphs ) + 1 ) << shift;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
reconintra.c 39 int shift; local
65 shift = 3 + x->up_available + x->left_available;
66 expected_dc = (average + (1 << (shift - 1))) >> shift;
170 int shift; local
199 shift = 2 + x->up_available + x->left_available;
200 expected_udc = (Uaverage + (1 << (shift - 1))) >> shift;
201 expected_vdc = (Vaverage + (1 << (shift - 1))) >> shift;
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_reader.h 80 register unsigned int shift = vp9_norm[range]; local
81 range <<= shift; local
82 value <<= shift; local
83 count -= shift;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_shader.cpp 320 const unsigned shift = 4 * (2 - i); local
321 offset_bits |= (offsets[i] << shift) & (0xF << shift);
  /external/chromium_org/third_party/opus/src/celt/
mathops.c 73 int shift = celt_ilog2(b)-29; local
74 a = VSHR32(a,shift);
75 b = VSHR32(b,shift);
  /external/chromium_org/third_party/skia/src/image/
SkSurface_Raster.cpp 44 int shift = 0; local
47 shift = 0;
50 shift = 1;
53 shift = 2;
63 uint64_t minRB = (uint64_t)info.width() << shift;
68 size_t alignedRowBytes = rowBytes >> shift << shift;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
common.cc 48 int shift = (1 << i); local
49 size_t x = n >> shift;
52 log += shift;
packed-cache-inl.h 196 // If we have space for a whole key, we just shift it left.
204 const int shift = kHashbits - kValuebits; local
206 return static_cast<T>(k >> shift) & kUpperMask;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
common.cc 44 int shift = (1 << i); local
45 size_t x = n >> shift;
48 log += shift;
packed-cache-inl.h 194 // If we have space for a whole key, we just shift it left.
202 const int shift = kHashbits - kValuebits; local
204 return static_cast<T>(k >> shift) & kUpperMask;
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
complex_fft.c 164 int i, j, l, k, istep, n, m, scale, shift; local
185 shift = 0;
191 shift++;
197 shift++;
231 frfi[2 * j] = (int16_t)WEBRTC_SPL_RSHIFT_W32(qr32 - tr32, shift);
232 frfi[2 * j + 1] = (int16_t)WEBRTC_SPL_RSHIFT_W32(qi32 - ti32, shift);
233 frfi[2 * i] = (int16_t)WEBRTC_SPL_RSHIFT_W32(qr32 + tr32, shift);
234 frfi[2 * i + 1] = (int16_t)WEBRTC_SPL_RSHIFT_W32(qi32 + ti32, shift);
291 shift+CIFFTSFT);
293 (qi32 - ti32 + round2), shift + CIFFTSFT)
    [all...]
complex_fft_mips.c 151 int scale = 0, shift = 0; local
171 "addiu %[shift], $zero, 14 \n\t"
222 "addu %[shift], %[shift], %[tmp1] \n\t"
269 "srav %[tmp4], %[tmp4], %[shift] \n\t"
270 "srav %[tmp1], %[tmp1], %[shift] \n\t"
271 "srav %[tmp6], %[tmp6], %[shift] \n\t"
272 "srav %[tmp5], %[tmp5], %[shift] \n\t"
292 "sra %[tmp4], %[tmp4], %[shift] \n\t"
293 "sra %[tmp1], %[tmp1], %[shift] \n\t
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-functions-prototype-misc.js 29 * @fileoverview Test splice, shift, unshift, slice and join on small
86 return array.shift();
120 return Array.prototype.shift.call(array);
254 // Shift.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-builtinbust-6.js 13 Array.prototype.shift.call(v);
37 test_receiver(65, "Array.prototype.shift.call(65)");
  /external/deqp/framework/common/
tcuFloatFormat.cpp 145 const int shift = exponentShift(exp); local
146 const double shiftFrac = deLdExp(frac, shift);
149 return deLdExp(roundFrac, exp - shift);
238 const int shift = exponentShift(exp); local
239 const deUint64 bits = deUint64(deLdExp(frac, shift));
242 const int exponent = exp + m_fractionBits - shift;
  /external/fio/
debug.h 32 unsigned long shift; member in struct:debug_level
  /external/freetype/src/base/
ftbbox.c 266 FT_Int shift; local
279 shift = 27 - FT_MSB( FT_ABS( p2 ) | FT_ABS( p3 ) );
281 if ( shift > 0 )
284 if ( shift > 2 )
285 shift = 2;
287 p1 <<= shift; local
288 p2 <<= shift; local
289 p3 <<= shift; local
290 p4 <<= shift; local
291 nmin = *min << shift;
311 nmin >>= shift; local
312 nmax >>= shift; local
    [all...]
  /external/freetype/src/truetype/
ttpload.c 67 FT_Int shift; local
90 shift = 2;
98 face->num_locations = table_len >> shift;
102 shift = 1;
110 face->num_locations = table_len >> shift;
122 ( (FT_Long)( face->root.num_glyphs ) + 1 ) << shift;

Completed in 7208 milliseconds

1 2 34 5 6 7 8 91011>>