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

1 2 3 45 6 7 8 91011>>

  /external/skia/src/image/
SkSurface_Raster.cpp 42 int shift = 0; local
45 shift = 0;
48 shift = 1;
51 shift = 2;
61 uint64_t minRB = (uint64_t)info.fWidth << shift;
66 size_t alignedRowBytes = rowBytes >> shift << 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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
boolhuff.h 72 register unsigned int shift; local
95 shift = vp8_norm[range];
97 range <<= shift; local
98 count += shift;
102 int offset = shift - count;
121 shift = count;
126 lowvalue <<= shift; local
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_reader.h 72 register unsigned int shift = vp9_norm[range]; local
73 range <<= shift; local
74 value <<= shift; local
75 count -= shift;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_writer.h 43 register unsigned int shift; local
54 shift = vp9_norm[range];
56 range <<= shift; local
57 count += shift;
60 int offset = shift - count;
75 shift = count;
80 lowvalue <<= shift; local
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/tc_act/
tc_pedit.h 25 __u32 shift; member in struct:tc_pedit_key
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/tc_act/
tc_pedit.h 25 __u32 shift; member in struct:tc_pedit_key
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/tc_act/
tc_pedit.h 41 __u32 shift; member in struct:tc_pedit_key
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/tc_act/
tc_pedit.h 41 __u32 shift; member in struct:tc_pedit_key
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/tc_act/
tc_pedit.h 41 __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");
  /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/chrome/browser/ui/app_list/search/
app_result.cc 156 const color_utils::HSL shift = {-1, 0, 0.6}; local
157 icon = gfx::ImageSkiaOperations::CreateHSLShiftedImage(icon, shift);
  /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/openssl/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/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/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;

Completed in 590 milliseconds

1 2 3 45 6 7 8 91011>>