Home
last modified time | relevance | path

Searched refs:shift1 (Results 1 – 15 of 15) sorted by relevance

/third_party/ffmpeg/libavutil/
Dfixed_dsp.h180 int shift1 = 30 - bits; in fixed_sqrt() local
183 if (shift1 > 0) retval = ff_sqrt(x << shift1); in fixed_sqrt()
184 else retval = ff_sqrt(x >> -shift1); in fixed_sqrt()
/third_party/ffmpeg/libavcodec/x86/
Dvc1dsp_mmx.c311 MSPEL_FILTER13_8B (shift1, "0(%1,%4 )", "0(%1,%3,2)", "0(%1,%3 )", "0(%1 )", OP_PUT, put_)
312 MSPEL_FILTER13_8B (shift1, "0(%1,%4 )", "0(%1,%3,2)", "0(%1,%3 )", "0(%1 )", OP_AVG, avg_)
313 MSPEL_FILTER13_VER_16B(shift1, "0(%1,%4 )", "0(%1,%3,2)", "0(%1,%3 )", "0(%1 )")
314 MSPEL_FILTER13_HOR_16B(shift1, "2*3(%1)", "2*2(%1)", "2*1(%1)", "2*0(%1)", OP_PUT, put_)
315 MSPEL_FILTER13_HOR_16B(shift1, "2*3(%1)", "2*2(%1)", "2*1(%1)", "2*0(%1)", OP_AVG, avg_)
/third_party/boost/boost/random/
Dxor_combine.hpp47 BOOST_STATIC_CONSTANT(int, shift1 = s1);
177 const int xor_combine_engine<URNG1, s1, URNG2, s2>::shift1; member in boost::random::xor_combine_engine<URNG1, s1, URNG2, s2>
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
Djquanti-neon.c119 int16x8_t shift1 = vld1q_s16(shift_ptr + (i + 1) * DCTSIZE); in jsimd_quantize_neon() local
168 vnegq_s16(shift1))); in jsimd_quantize_neon()
/third_party/ffmpeg/libavcodec/
Ddnxhddec.c489 int shift1 = ctx->bit_depth >= 10; in dnxhd_decode_macroblock() local
537 dest_y = frame->data[0] + ((y * dct_linesize_luma) << 4) + (x << (4 + shift1)); in dnxhd_decode_macroblock()
538 dest_u = frame->data[1] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444)); in dnxhd_decode_macroblock()
539 dest_v = frame->data[2] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->is_444)); in dnxhd_decode_macroblock()
552 dct_x_offset = 8 << shift1; in dnxhd_decode_macroblock()
Dilbcdec.c963 int16_t shift1, shift2, shift3, shift_max; in do_plc() local
1020 shift1 = get_size_in_bits(FFABS(cross_comp)) - 15; in do_plc()
1021 …int16_t) SPL_MUL_16_16_RSFT(SPL_SHIFT_W32(cross_comp, -shift1), SPL_SHIFT_W32(cross_comp, -shift1)… in do_plc()
1031 if (((shift_max << 1) + shift3) > ((shift1 << 1) + shift2)) { in do_plc()
1032 tmp1 = FFMIN(31, (shift_max << 1) + shift3 - (shift1 << 1) - shift2); in do_plc()
1036 tmp2 = FFMIN(31, (shift1 << 1) + shift2 - (shift_max << 1) - shift3); in do_plc()
1044 shift_max = shift1; in do_plc()
Ddxa.c50 static const int shift1[6] = { 0, 8, 8, 8, 4, 4 }; variable
107 mask = ((msk[0] & 0xF0) << shift1[type]) | ((msk[0] & 0xF) << shift2[type]); in decode_13()
/third_party/ffmpeg/libavcodec/mips/
Dvc1dsp_mmi.c2056 MSPEL_FILTER13_8B(shift1, %[offset_x3], %[offset_x2], %[offset_x1], $0, OP_PUT, put_)
2057 MSPEL_FILTER13_8B(shift1, %[offset_x3], %[offset_x2], %[offset_x1], $0, OP_AVG, avg_)
2058 MSPEL_FILTER13_VER_16B(shift1, %[stride_x3], %[stride_x2], %[stride_x1], $0)
2059 MSPEL_FILTER13_HOR_16B(shift1, 6, 4, 2, 0, OP_PUT, put_)
2060 MSPEL_FILTER13_HOR_16B(shift1, 6, 4, 2, 0, OP_AVG, avg_)
/third_party/mesa3d/src/intel/compiler/
Dbrw_nir_lower_storage_image.c216 nir_ssa_def *shift1 = nir_ushr(b, addr, nir_channel(b, swizzle, 1)); in image_address() local
219 nir_ssa_def *bit = nir_iand(b, nir_ixor(b, shift0, shift1), in image_address()
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dlossless_neon.c232 const uint8x16_t shift1 = vextq_u8(zero, sum0, 8); in PredictorAdd1_NEON() local
234 const uint8x16_t sum1 = vaddq_u8(sum0, shift1); in PredictorAdd1_NEON()
Dlossless_sse2.c211 const __m128i shift1 = _mm_slli_si128(sum0, 8); in PredictorAdd1_SSE2() local
213 const __m128i sum1 = _mm_add_epi8(sum0, shift1); in PredictorAdd1_SSE2()
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Dlossless_neon.c232 const uint8x16_t shift1 = vextq_u8(zero, sum0, 8); in PredictorAdd1_NEON() local
234 const uint8x16_t sum1 = vaddq_u8(sum0, shift1); in PredictorAdd1_NEON()
Dlossless_sse2.c211 const __m128i shift1 = _mm_slli_si128(sum0, 8); in PredictorAdd1_SSE2() local
213 const __m128i sum1 = _mm_add_epi8(sum0, shift1); in PredictorAdd1_SSE2()
/third_party/quickjs/
Dlibbf.c5457 int8_t shift1; member
5477 s->shift1 = l; in fast_udiv_init()
5478 if (s->shift1 > 1) in fast_udiv_init()
5479 s->shift1 = 1; in fast_udiv_init()
5489 t0 = (a - t1) >> s->shift1; in fast_udiv()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_image_writer.cpp3434 int32 shift1 = (fCodeSize + bit) - 8; in PutCodeWord() local
3437 uint8 byte1 = (uint8) (code >> shift1); in PutCodeWord()