Home
last modified time | relevance | path

Searched refs:shift3 (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavcodec/x86/
Dvc1dsp_mmx.c318 MSPEL_FILTER13_8B (shift3, "0(%1 )", "0(%1,%3 )", "0(%1,%3,2)", "0(%1,%4 )", OP_PUT, put_)
319 MSPEL_FILTER13_8B (shift3, "0(%1 )", "0(%1,%3 )", "0(%1,%3,2)", "0(%1,%4 )", OP_AVG, avg_)
320 MSPEL_FILTER13_VER_16B(shift3, "0(%1 )", "0(%1,%3 )", "0(%1,%3,2)", "0(%1,%4 )")
321 MSPEL_FILTER13_HOR_16B(shift3, "2*0(%1)", "2*1(%1)", "2*2(%1)", "2*3(%1)", OP_PUT, put_)
322 MSPEL_FILTER13_HOR_16B(shift3, "2*0(%1)", "2*1(%1)", "2*2(%1)", "2*3(%1)", OP_AVG, avg_)
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
Djquanti-neon.c121 int16x8_t shift3 = vld1q_s16(shift_ptr + (i + 3) * DCTSIZE); in jsimd_quantize_neon() local
172 vnegq_s16(shift3))); in jsimd_quantize_neon()
/third_party/libjpeg-turbo/simd/arm/
Djquanti-neon.c124 int16x8_t shift3 = vld1q_s16(shift_ptr + (i + 3) * DCTSIZE); in jsimd_quantize_neon() local
175 vnegq_s16(shift3))); in jsimd_quantize_neon()
/third_party/ffmpeg/libavcodec/
Dilbcdec.c963 int16_t shift1, shift2, shift3, shift_max; in do_plc() local
1026 shift3 = get_size_in_bits(ener_comp) - 15; in do_plc()
1027 max_measure = SPL_MUL_16_16(SPL_SHIFT_W32(ener_comp, -shift3), cross_square_max); 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()
/third_party/ffmpeg/libavcodec/mips/
Dvc1dsp_mmi.c2063 MSPEL_FILTER13_8B(shift3, $0, %[offset_x1], %[offset_x2], %[offset_x3], OP_PUT, put_)
2064 MSPEL_FILTER13_8B(shift3, $0, %[offset_x1], %[offset_x2], %[offset_x3], OP_AVG, avg_)
2065 MSPEL_FILTER13_VER_16B(shift3, $0, %[stride_x1], %[stride_x2], %[stride_x3])
2066 MSPEL_FILTER13_HOR_16B(shift3, 0, 2, 4, 6, OP_PUT, put_)
2067 MSPEL_FILTER13_HOR_16B(shift3, 0, 2, 4, 6, OP_AVG, avg_)
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_image_writer.cpp3459 int32 shift3 = (fCodeSize + bit) - 24; in PutCodeWord() local
3462 uint8 byte3 = (uint8) (code << (-shift3)); in PutCodeWord()