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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/common/
utf_impl.c 247 uint8_t b, count=1, shift=6; local
274 c|=(UChar32)b<<shift;
310 c|=(UChar32)(b&0x3f)<<shift;
312 shift+=6;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
dboolhuff.h 86 register unsigned int shift = vp8_norm[range]; local
87 range <<= shift; local
88 value <<= shift; local
89 count -= shift;
  /external/chromium_org/third_party/libvpx/source/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
  /external/chromium_org/third_party/libvpx/source/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
  /external/chromium_org/third_party/opus/src/celt/
celt_lpc.c 236 int shift; local
256 shift=0;
268 shift = celt_ilog2(ac0)-30+10;
269 shift = (shift)/2;
270 if (shift>0)
273 xx[i] = PSHR32(xptr[i], shift);
276 shift = 0;
287 shift = 2*shift;
    [all...]
kiss_fft.h 85 int shift; member in struct:kiss_fft_state
  /external/chromium_org/third_party/opus/src/silk/fixed/
find_LPC_FIX.c 46 opus_int isInterpLower, shift; local
73 shift = res_tmp_nrg_Q - res_nrg_Q;
74 if( shift >= 0 ) {
75 if( shift < 32 ) {
76 res_nrg = res_nrg - silk_RSHIFT( res_tmp_nrg, shift );
79 silk_assert( shift > -32 );
80 res_nrg = silk_RSHIFT( res_nrg, -shift ) - res_tmp_nrg;
104 shift = rshift0 - rshift1;
105 if( shift >= 0 ) {
106 res_nrg1 = silk_RSHIFT( res_nrg1, shift );
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkFloatBits.cpp 84 // apply the sign before we right-shift
114 // apply the sign before we right-shift
144 // apply the sign before we right-shift
160 int shift = EXP_BIAS; local
171 shift += bias;
176 shift -= zeros;
181 SkASSERT(shift >= 0 && shift <= 255);
184 data.fSignBitInt = (sign << 31) | (shift << 23) | (value & ~MATISSA_MAGIC_BIG);
193 int shift = EXP_BIAS local
    [all...]
  /external/chromium_org/third_party/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;
  /external/fio/engines/
mmap.c 185 unsigned long shift, mask; local
196 shift = 0;
201 shift++;
204 mmap_map_mask = 1UL << shift;
  /external/icu/icu4c/source/common/
utf_impl.c 232 uint8_t b, count=1, shift=6; local
256 c|=(UChar32)b<<shift;
280 c|=(UChar32)(b&0x3f)<<shift;
282 shift+=6;
  /external/iproute2/include/linux/tc_act/
tc_pedit.h 23 __u32 shift; member in struct:tc_pedit_key
  /external/javasqlite/src/main/java/SQLite/
StringEncoder.java 28 * is applied after determining and applying a shift that minimizes
45 // bogus shift, no data
53 // determine shift for minimum number of escapes
54 int shift = 1; local
63 shift = i;
73 out.append((char)shift);
75 // apply shift
76 char c = (char)((a[i] - shift)&0xff);
167 // first element is the shift
170 int shift = s.charAt(i++) local
    [all...]
  /external/kernel-headers/original/uapi/linux/tc_act/
tc_pedit.h 23 __u32 shift; member in struct:tc_pedit_key
  /external/libhevc/common/
ihevc_iquant_itrans_recon.c 127 WORD32 shift; local
144 shift = IT_SHIFT_STAGE_1;
145 add = 1 << (shift - 1);
195 CLIP_S16((29 * c[0] + 55 * c[1] + c[3] + add) >> shift);
197 CLIP_S16((55 * c[2] - 29 * c[1] + c[3] + add) >> shift);
213 CLIP_S16((74 * (iq_tmp_1 - iq_tmp_2 + iq_tmp_3) + add) >> shift);
215 CLIP_S16((55 * c[0] + 29 * c[2] - c[3] + add) >> shift);
226 shift = IT_SHIFT_STAGE_2;
227 add = 1 << (shift - 1);
240 CLIP_S16((29 * c[0] + 55 * c[1] + c[3] + add) >> shift);
336 WORD32 shift; local
    [all...]
ihevc_itrans_recon_32x32.c 85 * @param[in] shift
86 * Output shift
115 WORD32 shift; local
137 shift = IT_SHIFT_STAGE_1;
138 add = 1 << (shift - 1);
190 CLIP_S16(((e[k] + o[k] + add) >> shift));
192 CLIP_S16(((e[15 - k] - o[15 - k] + add) >> shift));
203 shift = IT_SHIFT_STAGE_2;
204 add = 1 << (shift - 1);
251 CLIP_S16(((e[k] + o[k] + add) >> shift));
    [all...]
  /external/libopus/celt/
celt_lpc.c 236 int shift; local
256 shift=0;
268 shift = celt_ilog2(ac0)-30+10;
269 shift = (shift)/2;
270 if (shift>0)
273 xx[i] = PSHR32(xptr[i], shift);
276 shift = 0;
287 shift = 2*shift;
    [all...]
kiss_fft.h 85 int shift; member in struct:kiss_fft_state
  /external/libopus/silk/fixed/
find_LPC_FIX.c 46 opus_int isInterpLower, shift; local
73 shift = res_tmp_nrg_Q - res_nrg_Q;
74 if( shift >= 0 ) {
75 if( shift < 32 ) {
76 res_nrg = res_nrg - silk_RSHIFT( res_tmp_nrg, shift );
79 silk_assert( shift > -32 );
80 res_nrg = silk_RSHIFT( res_nrg, -shift ) - res_tmp_nrg;
104 shift = rshift0 - rshift1;
105 if( shift >= 0 ) {
106 res_nrg1 = silk_RSHIFT( res_nrg1, shift );
    [all...]
  /external/libvpx/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
  /external/libvpx/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;
  /external/libvpx/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
  /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...]
  /external/skia/src/core/
SkFloatBits.cpp 84 // apply the sign before we right-shift
114 // apply the sign before we right-shift
144 // apply the sign before we right-shift
160 int shift = EXP_BIAS; local
171 shift += bias;
176 shift -= zeros;
181 SkASSERT(shift >= 0 && shift <= 255);
184 data.fSignBitInt = (sign << 31) | (shift << 23) | (value & ~MATISSA_MAGIC_BIG);
193 int shift = EXP_BIAS local
    [all...]

Completed in 1390 milliseconds

1 2 34 5 6 7 8 91011>>