HomeSort by relevance Sort by last modified time
    Searched defs:shift (Results 51 - 75 of 1296) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
parse.py 128 # Shift a token; we're done with it
129 self.shift(type, value, newstate, context)
175 def shift(self, type, value, newstate, context): member in class:Parser
176 """Shift a token. (Internal)"""
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
parse.py 128 # Shift a token; we're done with it
129 self.shift(type, value, newstate, context)
175 def shift(self, type, value, newstate, context): member in class:Parser
176 """Shift a token. (Internal)"""
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 128 # Shift a token; we're done with it
129 self.shift(type, value, newstate, context)
175 def shift(self, type, value, newstate, context): member in class:Parser
176 """Shift a token. (Internal)"""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 128 # Shift a token; we're done with it
129 self.shift(type, value, newstate, context)
175 def shift(self, type, value, newstate, context): member in class:Parser
176 """Shift a token. (Internal)"""
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
maverick.s 296 shift: label
  /toolchain/binutils/binutils-2.27/gold/
int_encoding.cc 44 unsigned int shift = 7; local
56 result |= (static_cast<uint64_t>(byte & 0x7f)) << shift;
57 shift += 7;
76 int shift = 7; local
89 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
90 shift += 7;
94 if ((shift < 8 * static_cast<int>(sizeof(result))) && (byte & 0x40))
95 result |= -((static_cast<int64_t>(1)) << shift);
  /toolchain/binutils/binutils-2.27/include/
leb128.h 58 unsigned int shift = 0; local
68 result |= ((uint64_t) (byte & 0x7f)) << shift;
71 shift += 7;
91 unsigned int shift = 0; local
101 result |= ((uint64_t) (byte & 0x7f)) << shift;
102 shift += 7;
106 if (shift < (sizeof (*r) * 8) && (byte & 0x40) != 0)
107 result |= -(((uint64_t) 1) << shift);
  /external/aac/libFDK/src/
FDK_lpc.cpp 122 int shift; local
143 shift = -order_ld[order - 1];
150 tmp = scaleValue(*pSignal, shift + signal_e) -
158 *pSignal = scaleValueSaturate(tmp, -shift - signal_e_out);
306 INT i, j, shift = lpcCoeff_e + 1; /* +1, because fMultDiv2 */
332 FDK_ASSERT(shift >= 0);
337 tmp = signal[j] >> shift;
346 signal[j] = tmp << shift;
  /external/gemmlowp/meta/
quantized_mul_kernels.h 31 int shift; member in struct:gemmlowp::meta::QuantizedStaticPreprocessed
69 std::cout << " kernel.shift: " << params.kernel.shift << std::endl;
  /external/iproute2/tc/
f_tcindex.c 20 fprintf(stderr," Usage: ... tcindex [ hash SIZE ] [ mask MASK ] [ shift SHIFT ]\n");
65 } else if (!strcmp(*argv,"shift")) {
66 int shift; local
69 shift = strtoul(*argv, &end, 0);
74 addattr_l(n, 4096, TCA_TCINDEX_SHIFT, &shift,
75 sizeof(shift));
149 int shift; local
151 if (RTA_PAYLOAD(tb[TCA_TCINDEX_SHIFT]) < sizeof(shift))
153 shift = rta_getattr_u32(tb[TCA_TCINDEX_SHIFT])
    [all...]
  /external/libchrome/base/
bits.h 30 int shift = (1 << i); local
31 uint32_t x = value >> shift;
34 log += shift;
  /external/libhevc/common/
ihevc_chroma_iquant_itrans_recon.c 136 WORD32 shift; local
153 shift = IT_SHIFT_STAGE_1;
154 add = 1 << (shift - 1);
196 CLIP_S16(((e[0] + o[0] + add) >> shift));
198 CLIP_S16(((e[1] + o[1] + add) >> shift));
200 CLIP_S16(((e[1] - o[1] + add) >> shift));
202 CLIP_S16(((e[0] - o[0] + add) >> shift));
213 shift = IT_SHIFT_STAGE_2;
214 add = 1 << (shift - 1);
235 CLIP_S16(((e[0] + o[0] + add) >> shift));
    [all...]
ihevc_chroma_itrans_recon_16x16.c 93 * @param[in] shift
94 * Output shift
123 WORD32 shift; local
145 shift = IT_SHIFT_STAGE_1;
146 add = 1 << (shift - 1);
187 CLIP_S16(((e[k] + o[k] + add) >> shift));
189 CLIP_S16(((e[7 - k] - o[7 - k] + add) >> shift));
200 shift = IT_SHIFT_STAGE_2;
201 add = 1 << (shift - 1);
237 CLIP_S16(((e[k] + o[k] + add) >> shift));
    [all...]
ihevc_chroma_itrans_recon_8x8.c 92 * @param[in] shift
93 * Output shift
121 WORD32 shift; local
137 shift = IT_SHIFT_STAGE_1;
138 add = 1 << (shift - 1);
182 CLIP_S16(((e[k] + o[k] + add) >> shift));
184 CLIP_S16(((e[3 - k] - o[3 - k] + add) >> shift));
195 shift = IT_SHIFT_STAGE_2;
196 add = 1 << (shift - 1);
223 CLIP_S16(((e[k] + o[k] + add) >> shift));
    [all...]
ihevc_itrans_recon.c 111 WORD32 shift; local
120 shift = IT_SHIFT_STAGE_1;
121 add = 1 << (shift - 1);
139 CLIP_S16((29 * c[0] + 55 * c[1] + c[3] + add) >> shift);
141 CLIP_S16((55 * c[2] - 29 * c[1] + c[3] + add) >> shift);
143 CLIP_S16((74 * (pi2_src[0] - pi2_src[2 * src_strd] + pi2_src[3 * src_strd]) + add) >> shift);
145 CLIP_S16((55 * c[0] + 29 * c[2] - c[3] + add) >> shift);
155 shift = IT_SHIFT_STAGE_2;
156 add = 1 << (shift - 1);
168 CLIP_S16((29 * c[0] + 55 * c[1] + c[3] + add) >> shift);
248 WORD32 shift; local
    [all...]
ihevc_itrans_recon_16x16.c 84 * @param[in] shift
85 * Output shift
113 WORD32 shift; local
135 shift = IT_SHIFT_STAGE_1;
136 add = 1 << (shift - 1);
177 CLIP_S16(((e[k] + o[k] + add) >> shift));
179 CLIP_S16(((e[7 - k] - o[7 - k] + add) >> shift));
190 shift = IT_SHIFT_STAGE_2;
191 add = 1 << (shift - 1);
228 CLIP_S16(((e[k] + o[k] + add) >> shift));
    [all...]
ihevc_itrans_recon_8x8.c 84 * @param[in] shift
85 * Output shift
112 WORD32 shift; local
135 shift = IT_SHIFT_STAGE_1;
136 add = 1 << (shift - 1);
167 CLIP_S16(((e[k] + o[k] + add) >> shift));
169 CLIP_S16(((e[3 - k] - o[3 - k] + add) >> shift));
180 shift = IT_SHIFT_STAGE_2;
181 add = 1 << (shift - 1);
206 CLIP_S16(((e[k] + o[k] + add) >> shift));
    [all...]
  /external/libopus/silk/float/
residual_energy_FLP.c 101 opus_int shift; local
105 shift = LPC_order + subfr_length;
108 silk_LPC_analysis_filter_FLP( LPC_res, a[ 0 ], x + 0 * shift, 2 * shift, LPC_order );
109 nrgs[ 0 ] = ( silk_float )( gains[ 0 ] * gains[ 0 ] * silk_energy_FLP( LPC_res_ptr + 0 * shift, subfr_length ) );
110 nrgs[ 1 ] = ( silk_float )( gains[ 1 ] * gains[ 1 ] * silk_energy_FLP( LPC_res_ptr + 1 * shift, subfr_length ) );
113 silk_LPC_analysis_filter_FLP( LPC_res, a[ 1 ], x + 2 * shift, 2 * shift, LPC_order );
114 nrgs[ 2 ] = ( silk_float )( gains[ 2 ] * gains[ 2 ] * silk_energy_FLP( LPC_res_ptr + 0 * shift, subfr_length ) );
115 nrgs[ 3 ] = ( silk_float )( gains[ 3 ] * gains[ 3 ] * silk_energy_FLP( LPC_res_ptr + 1 * shift, subfr_length ) )
    [all...]
  /external/libopus/silk/tests/
test_unit_LPC_inv_pred_gain.c 105 unsigned int shift; local
110 for( shift = 0; shift < 16; shift++ ) { /* Different dynamic range. */
112 A_Q12[i] = ((opus_int16)rand()) >> shift;
  /external/libvpx/libvpx/vp8/decoder/
dboolhuff.c 38 int shift = VP8_BD_VALUE_SIZE - CHAR_BIT - (count + CHAR_BIT); local
41 int x = shift + CHAR_BIT - (int)bits_left;
57 while (shift >= loop_end) {
59 value |= (VP8_BD_VALUE)*bufptr << shift;
62 shift -= CHAR_BIT;
  /external/libvpx/libvpx/vp8/encoder/
boolhuff.h 64 register int shift; local
86 shift = vp8_norm[range];
88 range <<= shift; local
89 count += shift;
92 int offset = shift - count;
109 shift = count;
114 lowvalue <<= shift; local
  /external/libvpx/libvpx/vpx_dsp/
bitwriter.h 38 register int shift; local
49 shift = vpx_norm[range];
51 range <<= shift; local
52 count += shift;
55 int offset = shift - count;
70 shift = count;
75 lowvalue <<= shift; local
  /external/libxaac/decoder/armv7/
ixheaacd_fft_armv7.c 17 WORD32 npts, shift; local
37 shift = ((n + 4)) / 2;
39 shift = ((n + 3) / 2);
42 ptr_x[2 * i] = (xr[i] / (1 << (shift)));
43 ptr_x[2 * i + 1] = (xi[i] / (1 << (shift)));
49 if (not_power_4) shift += 1;
55 if (not_power_4) shift += 1;
63 *preshift = shift - *preshift;
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_hw_context.c 39 unsigned i, ncopy, csize, sub_cmd, shift; local
56 shift = 2;
59 shift = 0;
76 dst_offset += csize << shift;
77 src_offset += csize << shift;
  /external/pcre/dist2/src/sljit/
sljitNativeMIPS_64.c 31 sljit_s32 shift = 32; local
56 shift -= 8;
61 shift -= 4;
66 shift -= 2;
72 shift += 1;
74 SLJIT_ASSERT(((uimm & 0xc000000000000000l) == 0x4000000000000000l) && (shift > 0) && (shift <= 32));
83 imm &= (1l << shift) - 1;
85 ins = (shift == 32) ? DSLL32 : DSLL;
86 if (shift < 32
    [all...]

Completed in 505 milliseconds

1 23 4 5 6 7 8 91011>>