Home
last modified time | relevance | path

Searched refs:ref0 (Results 1 - 25 of 35) sorted by relevance

12

/third_party/ffmpeg/libavcodec/mips/
H A Dme_cmp_msa.c29 v16u8 src0, src1, src2, src3, ref0, ref1, ref2, ref3; in sad_8width_msa() local
35 LD_UB4(ref, ref_stride, ref0, ref1, ref2, ref3); in sad_8width_msa()
38 PCKEV_D4_UB(src1, src0, src3, src2, ref1, ref0, ref3, ref2, in sad_8width_msa()
39 src0, src1, ref0, ref1); in sad_8width_msa()
40 sad += SAD_UB2_UH(src0, src1, ref0, ref1); in sad_8width_msa()
51 v16u8 src0, src1, ref0, ref1; in sad_16width_msa() local
57 LD_UB2(ref, ref_stride, ref0, ref1); in sad_16width_msa()
59 sad += SAD_UB2_UH(src0, src1, ref0, ref1); in sad_16width_msa()
63 LD_UB2(ref, ref_stride, ref0, ref1); in sad_16width_msa()
65 sad += SAD_UB2_UH(src0, src1, ref0, ref in sad_16width_msa()
79 v16u8 ref0, ref1, ref2, ref3, ref4, ref5; sad_horiz_bilinear_filter_8width_msa() local
159 v16u8 ref0, ref1, ref2, ref3, ref4; sad_vert_bilinear_filter_8width_msa() local
197 v16u8 ref0, ref1, ref2, ref3, ref4; sad_vert_bilinear_filter_16width_msa() local
235 v16u8 ref0, ref1, ref2, ref3, ref4; sad_hv_bilinear_filter_8width_msa() local
413 uint32_t ref0, ref1, ref2, ref3; sse_4width_msa() local
441 v16u8 ref0, ref1, ref2, ref3; sse_8width_msa() local
505 v16u8 ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7; hadamard_diff_8x8_msa() local
[all...]
/third_party/ffmpeg/libavcodec/loongarch/
H A Dh264_deblock_lasx.c47 ref0 = __lasx_xvld(ref_t, 12); \
50 ref0 = __lasx_xvilvl_w(ref0, ref0); \
53 ref0 = __lasx_xvsub_b(ref0, ref2); \
55 ref0 = __lasx_xvor_v(ref0, ref1); \
75 out = __lasx_xvor_v(ref0, tmp0); \
81 ref0
118 __m256i ref0, ref1, ref2, ref3; ff_h264_loop_filter_strength_lasx() local
[all...]
/third_party/ffmpeg/tests/checkasm/
H A Djpeg2000dsp.c49 int32_t *ref0 = &ref[BUF_SIZE*0], *new0 = &new[BUF_SIZE*0]; in check_rct_int() local
58 call_ref(ref0, ref1, ref2, BUF_SIZE); in check_rct_int()
60 if (memcmp(ref0, new0, BUF_SIZE * sizeof(*src)) || in check_rct_int()
73 float *ref0 = &ref[BUF_SIZE*0], *new0 = &new[BUF_SIZE*0]; in check_ict_float() local
82 call_ref(ref0, ref1, ref2, BUF_SIZE); in check_ict_float()
84 if (!float_near_abs_eps_array(ref0, new0, 1.0e-5, BUF_SIZE) || in check_ict_float()
H A Dfixed_dsp.c98 LOCAL_ALIGNED_16(int, ref0, [BUF_SIZE]); in check_butterflies()
105 memcpy(ref0, src0, BUF_SIZE * sizeof(*src0)); in check_butterflies()
110 call_ref(ref0, ref1, BUF_SIZE); in check_butterflies()
112 if (memcmp(ref0, new0, BUF_SIZE * sizeof(*ref0)) || in check_butterflies()
H A Dhevc_pel.c62 AV_WN32A(ref0 + k, r); \
212 LOCAL_ALIGNED_32(int16_t, ref0, [BUF_SIZE]); in checkasm_check_hevc_qpel_bi()
237 call_ref(dst0, sizes[size] * SIZEOF_PIXEL, src0, sizes[size] * SIZEOF_PIXEL, ref0, sizes[size], i, j, sizes[size]); in checkasm_check_hevc_qpel_bi()
256 LOCAL_ALIGNED_32(int16_t, ref0, [BUF_SIZE]); in checkasm_check_hevc_qpel_bi_w()
286 call_ref(dst0, sizes[size] * SIZEOF_PIXEL, src0, sizes[size] * SIZEOF_PIXEL, ref0, sizes[size], *denom, *wx, *wx, *ox, *ox, i, j, sizes[size]); in checkasm_check_hevc_qpel_bi_w()
444 LOCAL_ALIGNED_32(int16_t, ref0, [BUF_SIZE]); in checkasm_check_hevc_epel_bi()
469 call_ref(dst0, sizes[size] * SIZEOF_PIXEL, src0, sizes[size] * SIZEOF_PIXEL, ref0, sizes[size], i, j, sizes[size]); in checkasm_check_hevc_epel_bi()
488 LOCAL_ALIGNED_32(int16_t, ref0, [BUF_SIZE]); in checkasm_check_hevc_epel_bi_w()
518 call_ref(dst0, sizes[size] * SIZEOF_PIXEL, src0, sizes[size] * SIZEOF_PIXEL, ref0, sizes[size], *denom, *wx, *wx, *ox, *ox, i, j, sizes[size]); in checkasm_check_hevc_epel_bi_w()
/third_party/ffmpeg/libavcodec/
H A Dh264_direct.c601 int ref0, scale; in pred_temp_direct_motion() local
616 ref0 = l1ref0[x8 + y8 * b8_stride]; in pred_temp_direct_motion()
617 if (ref0 >= 0) in pred_temp_direct_motion()
618 ref0 = map_col_to_list0[0][ref0 + ref_offset]; in pred_temp_direct_motion()
620 ref0 = map_col_to_list0[1][l1ref1[x8 + y8 * b8_stride] + in pred_temp_direct_motion()
624 scale = dist_scale_factor[ref0]; in pred_temp_direct_motion()
626 ref0, 1); in pred_temp_direct_motion()
651 const int ref0 = l1ref0[0] >= 0 ? map_col_to_list0[0][l1ref0[0] + ref_offset] in pred_temp_direct_motion() local
653 const int scale = dist_scale_factor[ref0]; in pred_temp_direct_motion()
669 int ref0, scale; pred_temp_direct_motion() local
[all...]
H A Dh264_slice.c694 int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1; in implicit_weight_table() local
728 for (ref0 = ref_start; ref0 < ref_count0; ref0++) { in implicit_weight_table()
729 int64_t poc0 = sl->ref_list[0][ref0].poc; in implicit_weight_table()
732 if (!sl->ref_list[0][ref0].parent->long_ref && !sl->ref_list[1][ref1].parent->long_ref) { in implicit_weight_table()
744 sl->pwt.implicit_weight[ref0][ref1][0] = in implicit_weight_table()
745 sl->pwt.implicit_weight[ref0][ref1][1] = w; in implicit_weight_table()
747 sl->pwt.implicit_weight[ref0][ref1][field] = w; in implicit_weight_table()
H A Dhevcdec.c1552 * @param ref0 reference picture0 buffer at origin (0, 0)
1563 AVFrame *ref0, const Mv *mv0, int x_off, int y_off, in luma_mc_bi()
1567 ptrdiff_t src0stride = ref0->linesize[0]; in luma_mc_bi()
1583 uint8_t *src0 = ref0->data[0] + y_off0 * src0stride + (int)((unsigned)x_off0 << s->ps.sps->pixel_shift); in luma_mc_bi()
1709 * @param ref0 reference picture0 buffer at origin (0, 0)
1720 static void chroma_mc_bi(HEVCContext *s, uint8_t *dst0, ptrdiff_t dststride, AVFrame *ref0, AVFrame *ref1, in chroma_mc_bi() argument
1724 uint8_t *src1 = ref0->data[cidx+1]; in chroma_mc_bi()
1726 ptrdiff_t src1stride = ref0->linesize[cidx+1]; in chroma_mc_bi()
1880 HEVCFrame *ref0 = NULL, *ref1 = NULL; in hls_prediction_unit() local
1917 ref0 in hls_prediction_unit()
1562 luma_mc_bi(HEVCContext *s, uint8_t *dst, ptrdiff_t dststride, AVFrame *ref0, const Mv *mv0, int x_off, int y_off, int block_w, int block_h, AVFrame *ref1, const Mv *mv1, struct MvField *current_mv) luma_mc_bi() argument
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderPackingFunctionTests.cpp185 const deUint16 ref0 = (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), -1.0f, 1.0f) * 32767.0f), -(1<<15), (1<<15)-1); in iterate() local
187 const deUint32 ref = (ref1 << 16) | ref0; in iterate()
191 const int diff0 = de::abs((int)ref0 - (int)res0); in iterate()
275 const float ref0 = de::clamp(float(in0) / 32767.f, -1.0f, 1.0f); in iterate() local
280 const deUint32 diff0 = getUlpDiff(ref0, res0); in iterate()
289 << "vec2(" << HexFloat(ref0) << ", " << HexFloat(ref1) << ")" in iterate()
376 const deUint16 ref0 = (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), 0.0f, 1.0f) * 65535.0f), 0, (1<<16)-1); in iterate() local
378 const deUint32 ref = (ref1 << 16) | ref0; in iterate()
382 const int diff0 = de::abs((int)ref0 - (int)res0); in iterate()
466 const float ref0 in iterate() local
572 const deUint16 ref0 = (deUint16)tcu::Float16(inputs[valNdx].x()).bits(); iterate() local
677 const float ref0 = tcu::Float16(in0).asFloat(); iterate() local
[all...]
H A Des3fShaderCommonFunctionTests.cpp434 const float ref0 = de::abs(in0); in compare() local
435 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0); in compare()
439 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0; in compare()
450 const int ref0 = de::abs(in0); in compare() local
452 if (out0 != ref0) in compare()
454 m_failMsg << "Expected [" << compNdx << "] = " << ref0; in compare() local
527 const float ref0 = in0 < 0.0f ? -1.0f : in compare() local
529 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0); in compare()
533 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0; in compare()
544 const int ref0 in compare() local
549 m_failMsg << "Expected [" << compNdx << "] = " << ref0; compare() local
1307 const float ref0 = deFloatFloor(in0); compare() local
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_deband.c121 static int inline get_avg(int ref0, int ref1, int ref2, int ref3) in get_avg() argument
123 return (ref0 + ref1 + ref2 + ref3) / 4; in get_avg()
155 const int ref0 = src_ptr[av_clip(y + y_pos, 0, h) * src_linesize + av_clip(x + x_pos, 0, w)]; in deband_8_c() local
162 const int avg = get_avg(ref0, ref1, ref2, ref3); in deband_8_c()
167 dst_ptr[y * dst_linesize + x] = (FFABS(src0 - ref0) < thr) && in deband_8_c()
170 (FFABS(src0 - ref3) < thr) ? get_avg(ref0, ref1, ref2, ref3) : src0; in deband_8_c()
203 const int ref0 = src_ptr[av_clip(y + y_pos, 0, h) * src_linesize + av_clip(x + x_pos, 0, w)]; in deband_8_coupling_c() local
210 avg[p] = get_avg(ref0, ref1, ref2, ref3); in deband_8_coupling_c()
215 cmp[p] = (FFABS(src0 - ref0) < thr) && in deband_8_coupling_c()
268 const int ref0 in deband_16_coupling_c() local
336 const int ref0 = src_ptr[av_clip(y + y_pos, 0, h) * src_linesize + av_clip(x + x_pos, 0, w)]; deband_16_c() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderPackingFunctionTests.cpp189 const deUint16 ref0 = (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), -1.0f, 1.0f) * 32767.0f), -(1<<15), (1<<15)-1); in iterate() local
191 const deUint32 ref = (ref1 << 16) | ref0; in iterate()
195 const int diff0 = de::abs((int)ref0 - (int)res0); in iterate()
297 const float ref0 = de::clamp(float(in0) / 32767.f, -1.0f, 1.0f); in iterate() local
302 const deUint32 diff0 = getUlpDiff(ref0, res0); in iterate()
311 << "vec2(" << HexFloat(ref0) << ", " << HexFloat(ref1) << ")" in iterate()
408 const deUint16 ref0 = (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), 0.0f, 1.0f) * 65535.0f), 0, (1<<16)-1); in iterate() local
410 const deUint32 ref = (ref1 << 16) | ref0; in iterate()
414 const int diff0 = de::abs((int)ref0 - (int)res0); in iterate()
516 const float ref0 in iterate() local
638 const deUint16 ref0 = (deUint16)tcu::Float16(inputs[valNdx].x()).bits(); iterate() local
848 const float ref0 = tcu::Float16(in0).asFloat(); printErrorMessage() local
951 const deUint16 ref0 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), -1.0f, 1.0f) * 127.0f), -(1<<7), (1<<7)-1); iterate() local
1067 const float ref0 = de::clamp(float(in0) / 127.f, -1.0f, 1.0f); iterate() local
1186 const deUint16 ref0 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), 0.0f, 1.0f) * 255.0f), 0, (1<<8)-1); iterate() local
1302 const float ref0 = de::clamp(float(in0) / 255.f, 0.0f, 1.0f); iterate() local
[all...]
H A DvktShaderIntegerFunctionTests.cpp479 const deUint32 ref0 = in0+in1; in compare() local
482 if (((out0&mask0) != (ref0&mask0)) || out1 != ref1) in compare()
484 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(ref0) << ", " << tcu::toHex(ref1); in compare()
587 const deUint32 ref0 = in0-in1; in compare() local
590 if (((out0&mask0) != (ref0&mask0)) || out1 != ref1) in compare()
592 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(ref0) << ", " << tcu::toHex(ref1); in compare()
691 const deUint32 ref0 = deUint32(mul64 >> 32); in compare() local
694 if (out0 != ref0 || out1 != ref1) in compare()
696 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(ref0) << ", " << tcu::toHex(ref1); in compare()
796 const deInt32 ref0 in compare() local
[all...]
H A DvktShaderCommonFunctionTests.cpp531 const int ref0 = de::abs(in0); in compare() local
533 if (out0 != ref0) in compare()
535 m_failMsg << "Expected [" << compNdx << "] = " << ref0; in compare() local
602 const int ref0 = in0 < 0 ? -1 : in compare() local
605 if (out0 != ref0) in compare()
607 m_failMsg << "Expected [" << compNdx << "] = " << ref0; in compare() local
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fShaderPackingFunctionTests.cpp185 const deUint16 ref0 = (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), -1.0f, 1.0f) * 32767.0f), -(1<<15), (1<<15)-1); in iterate() local
187 const deUint32 ref = (ref1 << 16) | ref0; in iterate()
191 const int diff0 = de::abs((int)ref0 - (int)res0); in iterate()
275 const float ref0 = de::clamp(float(in0) / 32767.f, -1.0f, 1.0f); in iterate() local
280 const deUint32 diff0 = getUlpDiff(ref0, res0); in iterate()
289 << "vec2(" << HexFloat(ref0) << ", " << HexFloat(ref1) << ")" in iterate()
376 const deUint16 ref0 = (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), 0.0f, 1.0f) * 65535.0f), 0, (1<<16)-1); in iterate() local
378 const deUint32 ref = (ref1 << 16) | ref0; in iterate()
382 const int diff0 = de::abs((int)ref0 - (int)res0); in iterate()
466 const float ref0 in iterate() local
572 const deUint16 ref0 = (deUint16)tcu::Float16(inputs[valNdx].x()).bits(); iterate() local
677 const float ref0 = tcu::Float16(in0).asFloat(); iterate() local
787 const deUint16 ref0 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), -1.0f, 1.0f) * 127.0f), -(1<<7), (1<<7)-1); iterate() local
885 const float ref0 = de::clamp(float(in0) / 127.f, -1.0f, 1.0f); iterate() local
996 const deUint16 ref0 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), 0.0f, 1.0f) * 255.0f), 0, (1<<8)-1); iterate() local
1094 const float ref0 = de::clamp(float(in0) / 255.f, 0.0f, 1.0f); iterate() local
[all...]
H A Des31fShaderCommonFunctionTests.cpp509 const float ref0 = de::abs(in0); in compare() local
510 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0); in compare()
514 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0; in compare()
525 const int ref0 = de::abs(in0); in compare() local
527 if (out0 != ref0) in compare()
529 m_failMsg << "Expected [" << compNdx << "] = " << ref0; in compare() local
602 const float ref0 = in0 < 0.0f ? -1.0f : in compare() local
604 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0); in compare()
608 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0; in compare()
619 const int ref0 in compare() local
624 m_failMsg << "Expected [" << compNdx << "] = " << ref0; compare() local
1387 const float ref0 = deFloatFloor(in0); compare() local
[all...]
H A Des31fShaderIntegerFunctionTests.cpp409 const deUint32 ref0 = in0+in1; in compare() local
412 if (((out0&mask0) != (ref0&mask0)) || out1 != ref1) in compare()
414 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(ref0) << ", " << tcu::toHex(ref1); in compare()
503 const deUint32 ref0 = in0-in1; in compare() local
506 if (((out0&mask0) != (ref0&mask0)) || out1 != ref1) in compare()
508 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(ref0) << ", " << tcu::toHex(ref1); in compare()
593 const deUint32 ref0 = deUint32(mul64 >> 32); in compare() local
596 if (out0 != ref0 || out1 != ref1) in compare()
598 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(ref0) << ", " << tcu::toHex(ref1); in compare()
684 const deInt32 ref0 in compare() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H A DvktShaderPackingFunctionTests.cpp189 const deUint16 ref0 = (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), -1.0f, 1.0f) * 32767.0f), -(1<<15), (1<<15)-1); in iterate() local
191 const deUint32 ref = (ref1 << 16) | ref0; in iterate()
195 const int diff0 = de::abs((int)ref0 - (int)res0); in iterate()
297 const float ref0 = de::clamp(float(in0) / 32767.f, -1.0f, 1.0f); in iterate() local
302 const deUint32 diff0 = getUlpDiff(ref0, res0); in iterate()
311 << "vec2(" << HexFloat(ref0) << ", " << HexFloat(ref1) << ")" in iterate()
408 const deUint16 ref0 = (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), 0.0f, 1.0f) * 65535.0f), 0, (1<<16)-1); in iterate() local
410 const deUint32 ref = (ref1 << 16) | ref0; in iterate()
414 const int diff0 = de::abs((int)ref0 - (int)res0); in iterate()
516 const float ref0 in iterate() local
638 const deUint16 ref0 = (deUint16)tcu::Float16(inputs[valNdx].x()).bits(); iterate() local
848 const float ref0 = tcu::Float16(in0).asFloat(); printErrorMessage() local
951 const deUint16 ref0 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), -1.0f, 1.0f) * 127.0f), -(1<<7), (1<<7)-1); iterate() local
1067 const float ref0 = de::clamp(float(in0) / 127.f, -1.0f, 1.0f); iterate() local
1186 const deUint16 ref0 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), 0.0f, 1.0f) * 255.0f), 0, (1<<8)-1); iterate() local
1302 const float ref0 = de::clamp(float(in0) / 255.f, 0.0f, 1.0f); iterate() local
[all...]
H A DvktShaderIntegerFunctionTests.cpp479 const deUint32 ref0 = in0+in1; in compare() local
482 if (((out0&mask0) != (ref0&mask0)) || out1 != ref1) in compare()
484 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(ref0) << ", " << tcu::toHex(ref1); in compare()
587 const deUint32 ref0 = in0-in1; in compare() local
590 if (((out0&mask0) != (ref0&mask0)) || out1 != ref1) in compare()
592 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(ref0) << ", " << tcu::toHex(ref1); in compare()
691 const deUint32 ref0 = deUint32(mul64 >> 32); in compare() local
694 if (out0 != ref0 || out1 != ref1) in compare()
696 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(ref0) << ", " << tcu::toHex(ref1); in compare()
796 const deInt32 ref0 in compare() local
[all...]
H A DvktShaderCommonFunctionTests.cpp531 const int ref0 = de::abs(in0); in compare() local
533 if (out0 != ref0) in compare()
535 m_failMsg << "Expected [" << compNdx << "] = " << ref0; in compare() local
602 const int ref0 = in0 < 0 ? -1 : in compare() local
605 if (out0 != ref0) in compare()
607 m_failMsg << "Expected [" << compNdx << "] = " << ref0; in compare() local
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Denc_sse2.c150 __m128i ref0, ref1, ref2, ref3; in ITransform_SSE2() local
153 ref0 = _mm_loadl_epi64((const __m128i*)&ref[0 * BPS]); in ITransform_SSE2()
159 ref0 = _mm_cvtsi32_si128(WebPMemToUint32(&ref[0 * BPS])); in ITransform_SSE2()
165 ref0 = _mm_unpacklo_epi8(ref0, zero); in ITransform_SSE2()
170 ref0 = _mm_add_epi16(ref0, T0); in ITransform_SSE2()
175 ref0 = _mm_packus_epi16(ref0, ref0); in ITransform_SSE2()
314 const __m128i ref0 = _mm_loadl_epi64((const __m128i*)&ref[0 * BPS]); FTransform_SSE2() local
353 const __m128i ref0 = _mm_loadl_epi64((const __m128i*)&ref[0 * BPS]); FTransform2_SSE2() local
[all...]
H A Denc_msa.c718 v16u8 ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7; in SSE16x16_MSA() local
722 LD_UB8(b, BPS, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7); in SSE16x16_MSA()
723 PACK_DOTP_UB4_SW(src0, ref0, src1, ref1, out0, out1, out2, out3); in SSE16x16_MSA()
730 LD_UB8(b, BPS, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7); in SSE16x16_MSA()
731 PACK_DPADD_UB4_SW(src0, ref0, src1, ref1, out0, out1, out2, out3); in SSE16x16_MSA()
745 v16u8 ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7; in SSE16x8_MSA() local
749 LD_UB8(b, BPS, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7); in SSE16x8_MSA()
750 PACK_DOTP_UB4_SW(src0, ref0, src1, ref1, out0, out1, out2, out3); in SSE16x8_MSA()
764 v16u8 ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7; in SSE8x8_MSA() local
769 LD_UB8(b, BPS, ref0, ref in SSE8x8_MSA()
783 uint32_t src0, src1, src2, src3, ref0, ref1, ref2, ref3; SSE4x4_MSA() local
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dh264_deblock.asm1092 movd m2, [refq+b_idxq+d_idx+12] ; { ref0[bn] }
1093 punpckldq m2, [refq+b_idxq+d_idx+52] ; { ref0[bn], ref1[bn] }
1094 pshufw m0, [refq+b_idxq+12], 0x44 ; { ref0[b], ref0[b] }
1096 pshufw m3, m2, 0x4E ; { ref1[bn], ref0[bn] }
1097 psubb m0, m2 ; { ref0[b] != ref0[bn],
1098 ; ref0[b] != ref1[bn] }
1100 ; ref1[b] != ref0[bn] }
/third_party/lz4/lib/
H A Dlz4hc.c579 const BYTE* ref0; in LZ4HC_compress_hashChain() local
597 start0 = ip; ref0 = ref; ml0 = ml; in LZ4HC_compress_hashChain()
616 ip = start0; ref = ref0; ml = ml0; /* restore initial ML1 */ in LZ4HC_compress_hashChain()
690 ref0 = ref2; in LZ4HC_compress_hashChain()
/third_party/vk-gl-cts/framework/common/
H A DtcuTexCompareVerifier.cpp238 const float ref0 = cmp0True ? 1.0f : 0.0f;
241 const float v0 = ref0*(1.0f-f0) + ref1*f0;
242 const float v1 = ref0*(1.0f-f1) + ref1*f1;

Completed in 46 milliseconds

12