| /external/webp/src/dec/ |
| bits.h | 82 const int shift = kVP8Log2Range[br->range_]; local 84 br->value_ <<= shift; 85 br->missing_ += shift;
|
| /frameworks/av/media/libstagefright/codecs/aacenc/src/ |
| ms_stereo.c | 65 Word32 idx, shift; local 77 shift = norm_l(nrgL); 78 nrgL = Div_32(thrL << shift, nrgL << shift); 80 shift = norm_l(nrgR); 81 nrgR = Div_32(thrR << shift, nrgR << shift); 89 shift = norm_l(nrgL); 90 nrgL = Div_32(minThreshold << shift, nrgL << shift); [all...] |
| /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
| sad_mb_offset.h | 57 x10 = ((uint32)x10 >> SHIFT); /* 0 0 0 D */ 58 x10 = x10 | (x11 << (32 - SHIFT)); /* G F E D */ 59 x11 = ((uint32)x11 >> SHIFT); /* 0 0 0 H */ 60 x11 = x11 | (x12 << (32 - SHIFT)); /* K J I H */ 83 x10 = ((uint32)x10 >> SHIFT); /* mvn x10, x10, lsr #24 = 0xFF 0xFF 0xFF ~D */ 84 x10 = x10 | (x11 << (32 - SHIFT)); /* bic x10, x10, x11, lsl #8 = ~G ~F ~E ~D */ 85 x11 = ((uint32)x11 >> SHIFT); /* 0xFF 0xFF 0xFF ~H */ 86 x11 = x11 | (x12 << (32 - SHIFT)); /* ~K ~J ~I ~H */ 161 MVN x10, x10, lsr #SHIFT; 162 BIC x10, x10, x11, lsl #(32-SHIFT); 252 int32 shift = SHIFT; local [all...] |
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_act/ |
| tc_pedit.h | 24 __u32 shift; member in struct:tc_pedit_key
|
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/ |
| tc_pedit.h | 24 __u32 shift; member in struct:tc_pedit_key
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/ |
| tc_pedit.h | 24 __u32 shift; member in struct:tc_pedit_key
|
| /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");
|
| /dalvik/vm/alloc/ |
| HeapBitmap.cpp | 110 const int shift = CLZ(word); local 111 Object* obj = (Object *)(ptrBase + shift * HB_OBJECT_ALIGNMENT); 113 word &= ~(highBit >> shift); 146 const int shift = CLZ(word); local 147 Object *obj = (Object *)(ptrBase + shift * HB_OBJECT_ALIGNMENT); 149 word &= ~(highBit >> shift); 194 int shift = CLZ(garbage); local 195 garbage &= ~(highBit >> shift); 196 *pb++ = (void *)(ptrBase + shift * HB_OBJECT_ALIGNMENT);
|
| /external/aac/libAACenc/src/ |
| band_nrg.cpp | 199 INT shift = -leadingBits; local 201 spec = mdctSpectrum[j]>>shift;
|
| /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/openssl/crypto/bn/ |
| bn_gcd.c | 262 int shift; local 276 shift = 0; 277 while (!BN_is_bit_set(B, shift)) /* note that 0 < B */ 279 shift++; 288 if (shift > 0) 290 if (!BN_rshift(B, B, shift)) goto err; 295 shift = 0; 296 while (!BN_is_bit_set(A, shift)) /* note that 0 < A */ 298 shift++; 307 if (shift > 0 [all...] |
| /external/qemu/ |
| softmmu_template.h | 21 #define DATA_SIZE (1 << SHIFT) 83 #if SHIFT <= 2 84 res = io_mem_read[index][SHIFT](io_mem_opaque[index], physaddr); 93 #endif /* SHIFT > 2 */ 196 int index, shift; local 220 shift = (addr & (DATA_SIZE - 1)) * 8; 222 res = (res1 << shift) | (res2 >> ((DATA_SIZE * 8) - shift)); 224 res = (res1 >> shift) | (res2 << ((DATA_SIZE * 8) - shift)); [all...] |
| /external/skia/src/images/ |
| SkFlipPixelRef.cpp | 89 const void* srcAddr, int shift) { 90 const size_t offset = rect.fTop * dst.rowBytes() + (rect.fLeft << shift); 94 const size_t bytes = rect.width() << shift; 121 const int shift = getShift(dst.config()); local 122 if (shift < 0) { 130 copyRect(dst, iter.rect(), srcAddr, shift);
|
| /external/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/webkit/Source/JavaScriptCore/wtf/ |
| TCPackedCache.h | 194 const int shift = kHashbits - kValuebits; local 196 return static_cast<T>(k >> shift) & kUpperMask; 203 const int shift = kHashbits - kValuebits; local 205 return static_cast<K>(u) << shift;
|
| /external/webkit/Source/WebCore/rendering/mathml/ |
| RenderMathMLFraction.cpp | 179 int shift = int(ceil((refStyle->fontMetrics().xHeight() + 1) / 2)); local 180 return numerator->offsetHeight() + shift;
|
| RenderMathMLSquareRoot.cpp | 54 // Vertical shift of the left end point of the radical (%) 104 float shift = (maxHeight - thresholdHeight) / static_cast<float>(thresholdHeight); local 105 if (shift > 1.) 106 shift = 1.0f; 107 topStartShift = static_cast<int>(gRadicalBottomPointXPos * frontWidth * shift);
|
| /external/webp/src/enc/ |
| bit_writer.c | 107 if (bw->range_ < 127) { // emit 'shift' bits out and renormalize 108 const int shift = kNorm[bw->range_]; local 110 bw->value_ <<= shift; 111 bw->nb_bits_ += 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/aacdec/ |
| mdct_fxp.cpp | 43 shift = shift factor to reflect scaling introduced by FFT and mdct_fxp, 161 RETURNING( shift ) 178 RETURN (-shift-1) 278 Int shift; local 413 shift = mix_radix_fft( 417 shift += fwd_long_complex_rot( 426 shift = fft_rx4_short( 430 shift += fwd_short_complex_rot( 439 shift = -31 [all...] |
| /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/ |
| oper_32b.c | 234 #define step(shift) \ 235 if ((0x40000000l >> shift) + root <= value) \ 237 value -= (0x40000000l >> shift) + root; \ 238 root = (root >> 1) | (0x40000000l >> shift); \ 351 Word32 shift, shift2; local
|
| /frameworks/base/voip/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;
|
| /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) {
|
| UTF7StyleCharsetEncoder.java | 54 private final byte shift;
field in class:UTF7StyleCharsetEncoder 73 this.shift = cs.shift();
152 } else if (!base64mode && ch == shift) {
153 out.put(shift);
205 out.put(shift);
|