HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 126 - 150 of 828) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/tcmalloc/vendor/src/
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;
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-alg-fst.c 411 word8 temp[4], shift; local
429 shift = (4 - i) & 3;
430 temp[0] = a[(0 + shift) & 3][i];
431 temp[1] = a[(1 + shift) & 3][i];
432 temp[2] = a[(2 + shift) & 3][i];
433 temp[3] = a[(3 + shift) & 3][i];
476 shift = (4 - i) & 3;
477 temp[0] = a[(0 + shift) & 3][i];
478 temp[1] = a[(1 + shift) & 3][i];
479 temp[2] = a[(2 + shift) & 3][i]
    [all...]
  /external/libopus/celt/
mathops.c 73 int shift = celt_ilog2(b)-29; local
74 a = VSHR32(a,shift);
75 b = VSHR32(b,shift);
  /external/libpng/
pngwtran.c 74 int shift, v; local
80 shift = 6;
88 v |= (value << shift);
90 if (shift == 0)
92 shift = 6;
99 shift -= 2;
104 if (shift != 6)
113 int shift, v; local
119 shift = 4;
127 v |= (value << shift);
    [all...]
  /external/libvpx/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/libvpx/libvpx/vp8/decoder/
dboolhuff.h 91 register unsigned int shift = vp8_norm[range]; local
92 range <<= shift; local
93 value <<= shift; local
94 count -= shift;
  /external/mesa3d/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/openssl/crypto/bn/
bn_gcd.c 263 int shift; local
277 shift = 0;
278 while (!BN_is_bit_set(B, shift)) /* note that 0 < B */
280 shift++;
289 if (shift > 0)
291 if (!BN_rshift(B, B, shift)) goto err;
296 shift = 0;
297 while (!BN_is_bit_set(A, shift)) /* note that 0 < A */
299 shift++;
308 if (shift > 0
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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;
123 ( (FT_Long)( face->root.num_glyphs ) + 1 ) << shift;
  /external/valgrind/main/none/tests/s390x/
dfp-2.c 10 - shift left/right 64/128 bit
215 int *shift = (int *) amount; local
219 :[in]"f"(in),[amount]"a"(shift));
231 int *shift = (int *) amount; local
235 :[in]"f"(in),[amount]"a"(shift));
247 int *shift = (int *) amount; local
251 :[in]"f"(in),[amount]"a"(shift));
263 int *shift = (int *) amount; local
267 :[in]"f"(in),[amount]"a"(shift));
  /external/webrtc/src/common_audio/signal_processing/
complex_fft.c 289 int i, j, l, k, istep, n, m, scale, shift; local
310 shift = 0;
316 shift++;
322 shift++;
356 frfi[2 * j] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(qr32 - tr32, shift);
357 frfi[2 * j + 1] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(qi32 - ti32, shift);
358 frfi[2 * i] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(qr32 + tr32, shift);
359 frfi[2 * i + 1] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(qi32 + ti32, shift);
410 shift+CIFFTSFT);
412 (qi32 - ti32 + round2), shift + CIFFTSFT)
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
oper_32b.c 236 #define step(shift) \
237 if ((0x40000000l >> shift) + root <= value) \
239 value -= (0x40000000l >> shift) + root; \
240 root = (root >> 1) | (0x40000000l >> shift); \
355 Word32 shift, shift2; local
  /frameworks/opt/net/voip/src/jni/rtp/
EchoSuppressor.cpp 46 int shift = 0; local
47 while ((sampleCount >> shift) > 1 && (tailLength >> shift) > 256) {
48 ++shift;
51 mShift = shift + 4;
52 mScale = 1 << shift;
54 mWindowSize = sampleCount >> shift;
55 mTailLength = tailLength >> shift;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
dboolhuff.h 91 register unsigned int shift = vp8_norm[range]; local
92 range <<= shift; local
93 value <<= shift; local
94 count -= shift;
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetDecoder.java 42 private final byte shift; field in class:UTF7StyleCharsetDecoder
55 this.shift = cs.shift();
74 out.put((char)shift);
87 if (b == shift) {

Completed in 1370 milliseconds

1 2 3 4 56 7 8 91011>>