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

<<21222324252627282930>>

  /external/libopus/celt/
celt_encoder.c 285 int shift=0; local
286 shift = 14-celt_ilog2(1+celt_maxabs16(tmp, len));
287 if (shift!=0)
290 tmp[i] = SHL16(tmp[i], shift);
425 int shift; local
431 shift = mode->maxLM;
435 shift = mode->maxLM-LM;
441 clt_mdct_forward(&mode->mdct, in+c*(B*N+overlap)+b*N, &out[b+c*N*B], mode->window, overlap, shift, B);
    [all...]
  /external/libopus/src/
opus_encoder.c 359 int shift; local
362 shift=celt_ilog2(Fs/(cutoff_Hz*3));
371 hp_mem[2*c] = hp_mem[2*c] + PSHR32(x - hp_mem[2*c], shift);
374 hp_mem[2*c+1] = hp_mem[2*c+1] + PSHR32(tmp - hp_mem[2*c+1], shift);
    [all...]
  /external/libpng/
png.c 4004 png_byte shift, sig_bit; local
    [all...]
pngstruct.h 353 png_color_8 shift; /* shift for significant bit tranformation */ member in struct:png_struct_def
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 377 uintptr_t shift = 0; local
383 result |= (byte & 0x7f) << shift;
384 shift += 7;
401 uintptr_t shift = 0; local
407 result |= (byte & 0x7f) << shift;
408 shift += 7;
414 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) {
415 result |= (~0 << shift);
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 1607 unsigned shift; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 704 LLVMValueRef shift; local
743 shift = lp_build_const_int_vec(bld->gallivm, type, type.width/2);
745 shift = NULL;
752 if(shift) {
754 res = LLVMConstAShr(res, shift);
756 res = LLVMConstLShr(res, shift);
764 if(shift) {
766 res = LLVMBuildAShr(builder, res, shift, "");
768 res = LLVMBuildLShr(builder, res, shift, "");
802 unsigned shift = ffs(b) - 1 local
938 LLVMValueRef shift; local
1223 LLVMValueRef shift = lp_build_const_int_vec(bld->gallivm, type, type.width - 1); local
    [all...]
  /external/mesa3d/src/mesa/main/
ff_fragment_shader.cpp 816 rgb_saturate = GL_FALSE; /* saturate after rgb shift */
823 alpha_saturate = GL_FALSE; /* saturate after alpha shift */
883 /* Deal with the final shift:
886 ir_constant *shift; local
889 shift = new(p->mem_ctx) ir_constant((float)(1 << rgb_shift));
898 shift = new(p->mem_ctx) ir_constant(glsl_type::vec4_type,
902 return saturate(mul(deref, shift));
    [all...]
get.c 2068 int shift, i; local
2157 int shift, i; local
2246 int shift, i; local
2342 int shift, i; local
2438 int shift, i; local
2737 int shift, i; local
    [all...]
  /external/opencv/cv/src/
cvcalibinit.cpp 1987 const int shift = 0; local
    [all...]
cvhough.cpp 566 const int shift = 16; local
605 dy0 = cvRound( b*(1 << shift)/fabs(a) );
606 y0 = (y0 << shift) + (1 << (shift-1));
612 dx0 = cvRound( a*(1 << shift)/fabs(b) );
613 x0 = (x0 << shift) + (1 << (shift-1));
633 i1 = y >> shift;
637 j1 = x >> shift;
681 i1 = y >> shift;
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 63 int shift, CvPoint offset=cvPoint(0,0) );
70 const void* color, int thickness, int line_type, int shift );
74 const void* color, int line_type, int shift );
988 icvFillConvexPoly( CvMat* img, CvPoint *v, int npts, const void* color, int line_type, int shift )
997 int delta = shift ? 1 << (shift - 1) : 0;
2540 int shift = 0; local
    [all...]
cxmatmul.cpp 1607 CvMat shiftstub, *shift = (CvMat*)shiftvec; local
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 1206 int shift = h[1]*(y >> y_shift); local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/smooth/
ftgrays.c 1534 int shift; local
    [all...]
  /external/qemu/audio/
audio.c 709 int bits = 8, sign = 0, shift = 0; local
721 shift = 1;
728 shift = 2;
736 info->shift = (as->nchannels == 2) + shift;
737 info->align = (1 << info->shift) - 1;
738 info->bytes_per_second = info->freq << info->shift;
749 memset (buf, 0x00, len << info->shift);
754 memset (buf, 0x80, len << info->shift);
761 int shift = info->nchannels - 1 local
778 int shift = info->nchannels - 1; local
    [all...]
  /external/qemu/disas/
arm.c 109 %I print cirrus signed shift immediate: bits 0..3|4..6
1604 int shift = (given & 0x60) >> 5; local
2452 unsigned shift; local
3658 unsigned int shift = 0; local
    [all...]
  /external/qemu/distrib/libpng-1.2.46/
pngrutil.c 2548 int shift; local
2602 int shift; local
2654 int shift; local
    [all...]
  /external/qemu/target-i386/
ops_sse.h 20 #if SHIFT == 0
40 int shift; local
44 #if SHIFT == 1
48 shift = s->B(0);
49 d->W(0) >>= shift;
50 d->W(1) >>= shift;
51 d->W(2) >>= shift;
52 d->W(3) >>= shift;
53 #if SHIFT == 1
54 d->W(4) >>= shift;
64 int shift; local
85 int shift; local
109 int shift; local
129 int shift; local
146 int shift; local
166 int shift; local
184 int shift; local
203 int shift, i; local
219 int shift, i; local
    [all...]
  /external/valgrind/main/VEX/priv/
host_mips_isel.c 237 immediate in the range 1 .. 31 inclusive. Used for doing shift amounts. */
242 immediate in the range 1 .. 63 inclusive. Used for doing shift amounts. */
901 /* a shift? */
1229 UInt shift = 0; local
    [all...]
host_s390_isel.c 1540 static s390_opnd_RMI shift = { S390_OPND_IMMEDIATE }; local
    [all...]
host_x86_isel.c 701 Int shift = 0; local
711 case 1: shift = 0; break;
712 case 4: shift = 2; break;
713 case 8: shift = 3; break;
722 ... base(%ebp, %tmp, shift) ...
734 X86AMode_IRRS( descr->base, hregX86_EBP(), tmp, shift );
978 /* Perhaps a shift op? */
1081 Int shift = (e->Iex.Binop.op == Iop_MullS8 local
1290 Int shift = e->Iex.Unop.op == Iop_16HIto8 ? 8 : 16; local
1575 UInt shift = e->Iex.Binop.arg1 local
1593 UInt shift = e->Iex.Binop.arg2->Iex.Binop.arg2->Iex.Const.con->Ico.U8; local
    [all...]
  /external/vixl/src/a64/
assembler-a64.cc 214 Operand::Operand(Register reg, Shift shift, unsigned shift_amount)
216 shift_(shift),
294 Shift shift,
297 shift_(shift), extend_(NO_EXTEND), shift_amount_(shift_amount) {
300 VIXL_ASSERT(shift == LSL);
314 shift_= offset.shift();
1859 Shift shift = addr.shift(); local
    [all...]
simulator-a64.cc 63 // Ensure that shift operations act as the simulator expects.
297 Shift shift_type,
309 // Shift used to restore the sign.
623 static_cast<Shift>(instr->ShiftDP()),
666 Shift shift_type = static_cast<Shift>(instr->ShiftDP());
1020 // Shift is limited for W operations.
1024 int64_t shift = instr->ShiftMoveWide() * 16; local
1025 int64_t shifted_imm16 = instr->ImmMoveWide() << shift;
1041 (prev_xn_val & ~(INT64_C(0xffff) << shift)) | shifted_imm16
1213 unsigned shift = wreg(instr->Rm()) & mask; local
1718 int shift = highest_significant_bit - mbits; local
    [all...]
  /external/vixl/test/
test-assembler-a64.cc 4001 int shift[] = {1, 3, 5, 9, 17, 33}; local
4053 int shift[] = {1, 3, 5, 9, 17, 33}; local
4107 int shift[] = {1, 3, 5, 9, 17, 33}; local
4161 int shift[] = {4, 8, 12, 16, 24, 36}; local
    [all...]

Completed in 1082 milliseconds

<<21222324252627282930>>