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

1 2 3 4 5 6 7 8 91011>>

  /external/libopus/celt/
mdct.c 67 int shift; local
85 for (shift=0;shift<=maxshift;shift++)
120 const opus_val16 *window, int overlap, int shift, int stride, int arch)
126 const kiss_fft_state *st = l->kfft[shift];
140 for (i=0;i<shift;i++)
243 const opus_val16 * OPUS_RESTRICT window, int overlap, int shift, int stride, int arch)
252 for (i=0;i<shift;i++)
267 const opus_int16 * OPUS_RESTRICT bitrev = l->kfft[shift]->bitrev
    [all...]
  /external/libopus/silk/fixed/mips/
noise_shape_analysis_FIX_mipsr1.h 157 opus_int shift, slope_part, flat_part; local
162 shift = slope_part;
163 silk_memcpy( x_windowed + shift, x_ptr + shift, flat_part * sizeof(opus_int16) );
164 shift += flat_part;
165 silk_apply_sine_window( x_windowed + shift, x_ptr + shift, 2, slope_part );
  /external/libopus/silk/float/
noise_shape_analysis_FLP.c 239 opus_int shift, slope_part, flat_part; local
244 shift = slope_part;
245 silk_memcpy( x_windowed + shift, x_ptr + shift, flat_part * sizeof(silk_float) );
246 shift += flat_part;
247 silk_apply_sine_window_FLP( x_windowed + shift, x_ptr + shift, 2, slope_part );
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format_yuv.c 88 * Avoid shift with per-element count.
106 LLVMValueRef shift; local
108 shift = LLVMBuildMul(builder, i, lp_build_const_int_vec(gallivm, type, 16), "");
109 shift = LLVMBuildAdd(builder, shift, lp_build_const_int_vec(gallivm, type, 8), "");
111 shift = LLVMBuildMul(builder, i, lp_build_const_int_vec(gallivm, type, -16), "");
112 shift = LLVMBuildAdd(builder, shift, lp_build_const_int_vec(gallivm, type, 16), "");
114 *y = LLVMBuildLShr(builder, packed, shift, "");
172 * Avoid shift with per-element count
189 LLVMValueRef shift; local
    [all...]
lp_bld_logic.c 341 LLVMValueRef shift = LLVMConstInt(bld->int_elem_type, bld->type.width - 1, 0); local
342 shift = lp_build_broadcast(bld->gallivm, bld->int_vec_type, shift);
343 mask = LLVMBuildLShr(builder, mask, shift, "");
  /external/mesa3d/src/gallium/drivers/ilo/genhw/
genhw.h 62 gen_shift32(uint32_t bits, uint32_t mask, int shift)
64 bits <<= shift; local
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 538 int shift = 3 - emit.current_node; local
541 code->code_addr[shift + i] = code->code_addr[i];
542 for(i = 0; i < shift; ++i)
  /external/mesa3d/src/glx/
XF86dri.c 200 int shift = 32; /* var to prevent warning on next line */ local
201 *hSAREA |= ((drm_handle_t) rep.hSAREAHigh) << shift;
513 * backwards compatibility (Because of the >> 2 shift) but the fix
582 int shift = 32; /* var to prevent warning on next line */ local
583 *hFrameBuffer |= ((drm_handle_t) rep.hFrameBufferHigh) << shift;
  /external/mesa3d/src/mesa/main/
pixeltransfer.c 194 * Apply color index shift and offset to an array of pixels.
200 GLint shift = ctx->Pixel.IndexShift; local
203 if (shift > 0) {
205 indexes[i] = (indexes[i] << shift) + offset;
208 else if (shift < 0) {
209 shift = -shift;
211 indexes[i] = (indexes[i] >> shift) + offset;
224 * Apply color index shift, offset and table lookup to an array
247 * Apply stencil index shift, offset and table lookup to an arra
256 GLint shift = ctx->Pixel.IndexShift; local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Huffman.java 186 int shift = 8 - len; local
187 int start = (code << shift) & 0xFF;
188 int end = 1 << shift;
  /external/python/cpython2/Parser/
parser.c 108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset) function
261 /* Shift the token */
262 if ((err = shift(&ps->p_stack, type, str,
264 D(printf(" MemError: shift.\n"));
267 D(printf(" Shift.\n"));
  /external/skia/tests/
PathCoverageTest.cpp 50 int shift = 30 - SkCLZ(distance); local
52 shift &= ~(shift>>31);
53 if (shift > MAX_COEFF_SHIFT) {
54 shift = MAX_COEFF_SHIFT;
56 return 1 << shift;
  /external/skqp/tests/
PathCoverageTest.cpp 50 int shift = 30 - SkCLZ(distance); local
52 shift &= ~(shift>>31);
53 if (shift > MAX_COEFF_SHIFT) {
54 shift = MAX_COEFF_SHIFT;
56 return 1 << shift;
  /external/speex/libspeex/
fftwrap.c 47 int i, shift; local
56 shift=0;
60 shift++;
64 out[i] = SHL16(in[i], shift);
66 return shift;
69 static void renorm_range(spx_word16_t *in, spx_word16_t *out, int shift, int len)
74 out[i] = PSHR16(in[i], shift);
275 int shift; local
277 shift = maximize_range(in, in, 32000, t->N);
279 renorm_range(in, in, shift, t->N)
    [all...]
stereo.c 154 int shift; local
187 shift = spx_ilog2(largest)-15;
188 largest = VSHR32(largest, shift-4);
189 smallest = VSHR32(smallest, shift);
206 shift = spx_ilog2(e_tot);
207 e_tot = VSHR32(e_tot, shift-25);
208 e_left = VSHR32(e_left, shift-10);
209 e_right = VSHR32(e_right, shift-10);
  /external/swiftshader/third_party/LLVM/lib/Object/
MachOObject.cpp 365 uint32_t shift = 0; local
368 assert(shift < 64 && "too big for uint64_t");
371 delta |= ((byte & 0x7F) << shift);
372 shift += 7;
379 shift = 0;
  /external/syslinux/com32/lib/jpeg/
jidctflt.c 85 static inline unsigned char descale_and_clamp(int x, int shift)
95 : "0"(x), "Ir"(shift), "ir"(1UL<<(shift-1)), "r" (0xff), "r" (0)
101 static inline unsigned char descale_and_clamp(int x, int shift)
103 x += (1UL<<(shift-1));
105 x = (x >> shift) | ((~(0UL)) << (32-(shift)));
107 x >>= shift; local
  /external/v8/src/
register-configuration.cc 231 int shift = rep_int - other_rep_int; local
232 int base_index = index << shift;
238 return 1 << shift;
240 int shift = other_rep_int - rep_int; local
241 *alias_base_index = index >> shift;
256 int shift = rep_int - other_rep_int; local
257 return index == other_index >> shift;
259 int shift = other_rep_int - rep_int; local
260 return index >> shift == other_index;
  /external/v8/src/wasm/
wasm-external-refs.cc 60 float shift = static_cast<float>(1ull << 32); local
64 shift = static_cast<float>(1ull << 31);
73 result *= shift;
95 double shift = static_cast<double>(1ull << 32); local
98 result *= shift;
  /external/vixl/test/aarch32/
test-assembler-cond-rd-memop-rs-shift-amount-1to31-a32.cc 74 ShiftType shift; member in struct:vixl::aarch32::__anon43292::Operands
3633 ShiftType shift = kTests[i].operands.shift; local
    [all...]
test-assembler-cond-rd-memop-rs-shift-amount-1to32-a32.cc 74 ShiftType shift; member in struct:vixl::aarch32::__anon43293::Operands
3633 ShiftType shift = kTests[i].operands.shift; local
    [all...]
test-assembler-cond-rd-rn-operand-rm-shift-amount-1to31-a32.cc 89 ShiftType shift; member in struct:vixl::aarch32::__anon43329::Operands
2663 ShiftType shift = kTests[i].operands.shift; local
    [all...]
test-assembler-cond-rd-rn-operand-rm-shift-amount-1to31-t32.cc 89 ShiftType shift; member in struct:vixl::aarch32::__anon43330::Operands
2663 ShiftType shift = kTests[i].operands.shift; local
    [all...]
test-assembler-cond-rd-rn-operand-rm-shift-amount-1to32-a32.cc 89 ShiftType shift; member in struct:vixl::aarch32::__anon43331::Operands
2663 ShiftType shift = kTests[i].operands.shift; local
    [all...]
test-assembler-cond-rd-rn-operand-rm-shift-amount-1to32-t32.cc 89 ShiftType shift; member in struct:vixl::aarch32::__anon43332::Operands
2663 ShiftType shift = kTests[i].operands.shift; local
    [all...]

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 91011>>