Home
last modified time | relevance | path

Searched refs:temp_src (Results 1 – 7 of 7) sorted by relevance

/external/libvpx/vp8/common/loongarch/
Dloopfilter_filters_lsx.c428 uint8_t *temp_src; in mbloop_filter_horizontal_edge_y_lsx() local
439 temp_src = src - pitch_x4; in mbloop_filter_horizontal_edge_y_lsx()
440 DUP4_ARG2(__lsx_vldx, temp_src, 0, temp_src, pitch, temp_src, pitch_x2, in mbloop_filter_horizontal_edge_y_lsx()
441 temp_src, pitch_x3, p3, p2, p1, p0); in mbloop_filter_horizontal_edge_y_lsx()
442 temp_src += pitch_x4; in mbloop_filter_horizontal_edge_y_lsx()
443 DUP4_ARG2(__lsx_vldx, temp_src, 0, temp_src, pitch, temp_src, pitch_x2, in mbloop_filter_horizontal_edge_y_lsx()
444 temp_src, pitch_x3, q0, q1, q2, q3); in mbloop_filter_horizontal_edge_y_lsx()
449 temp_src = src - pitch_x3; in mbloop_filter_horizontal_edge_y_lsx()
450 __lsx_vstx(p2, temp_src, 0); in mbloop_filter_horizontal_edge_y_lsx()
451 __lsx_vstx(p1, temp_src, pitch); in mbloop_filter_horizontal_edge_y_lsx()
[all …]
/external/libvpx/vp8/common/mips/msa/
Dloopfilter_filters_msa.c291 uint8_t *temp_src; in mbloop_filter_horizontal_edge_y_msa() local
298 temp_src = src - (pitch << 2); in mbloop_filter_horizontal_edge_y_msa()
299 LD_UB8(temp_src, pitch, p3, p2, p1, p0, q0, q1, q2, q3); in mbloop_filter_horizontal_edge_y_msa()
303 temp_src = src - 3 * pitch; in mbloop_filter_horizontal_edge_y_msa()
304 ST_UB4(p2, p1, p0, q0, temp_src, pitch); in mbloop_filter_horizontal_edge_y_msa()
305 temp_src += (4 * pitch); in mbloop_filter_horizontal_edge_y_msa()
306 ST_UB2(q1, q2, temp_src, pitch); in mbloop_filter_horizontal_edge_y_msa()
314 uint8_t *temp_src; in mbloop_filter_horizontal_edge_uv_msa() local
325 temp_src = src_u - (pitch << 2); in mbloop_filter_horizontal_edge_uv_msa()
326 LD_UB8(temp_src, pitch, p3_u, p2_u, p1_u, p0_u, q0_u, q1_u, q2_u, q3_u); in mbloop_filter_horizontal_edge_uv_msa()
[all …]
/external/libvpx/vpx_dsp/mips/
Dloopfilter_8_msa.c233 uint8_t *temp_src; in vpx_lpf_vertical_8_dual_msa() local
245 temp_src = src - 4; in vpx_lpf_vertical_8_dual_msa()
247 LD_UB8(temp_src, pitch, p0, p1, p2, p3, row4, row5, row6, row7); in vpx_lpf_vertical_8_dual_msa()
248 temp_src += (8 * pitch); in vpx_lpf_vertical_8_dual_msa()
249 LD_UB8(temp_src, pitch, q3, q2, q1, q0, row12, row13, row14, row15); in vpx_lpf_vertical_8_dual_msa()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dr500_fragprog.c164 struct rc_src_register temp_src; in r500_transform_IF() local
165 temp_src = writer->Inst->U.I.SrcReg[0]; in r500_transform_IF()
168 writer->Inst->U.I.SrcReg[1] = temp_src; in r500_transform_IF()
/external/pdfium/core/fpdfapi/page/
Dcpdf_colorspace.cpp999 DataVector<uint8_t> temp_src(Fx2DSizeOrDie(nMaxColors, nComponents)); in TranslateImageLine() local
1005 temp_src[src_index++] = static_cast<uint8_t>(color / order * 5); in TranslateImageLine()
1011 m_pProfile->TranslateScanline(m_pCache, temp_src, nMaxColors); in TranslateImageLine()
/external/mesa3d/src/mesa/main/
Dmipmap.c2075 GLubyte *temp_src = NULL, *temp_dst = NULL; in generate_mipmap_compressed() local
2114 temp_src = malloc(temp_src_img_stride * srcImage->Depth); in generate_mipmap_compressed()
2120 if (!temp_src || !temp_src_slices || !temp_dst_slices) { in generate_mipmap_compressed()
2139 temp_src, srcImage); in generate_mipmap_compressed()
2185 temp_src_slices[i] = temp_src + temp_src_img_stride * i; in generate_mipmap_compressed()
2209 GLubyte *temp = temp_src; in generate_mipmap_compressed()
2210 temp_src = temp_dst; in generate_mipmap_compressed()
2218 free(temp_src); in generate_mipmap_compressed()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_vgpu10.c5908 struct tgsi_full_src_register temp_src; in store_tesslevels() local
5911 temp_src = make_src_temp_reg(emit->tcs.inner.temp_index); in store_tesslevels()
5913 temp_src = make_immediate_reg_float(emit, 1.0f); in store_tesslevels()
5917 scalar_src(&temp_src, TGSI_SWIZZLE_X + i); in store_tesslevels()
5925 temp_src = make_src_temp_reg(emit->tcs.outer.temp_index); in store_tesslevels()
5927 temp_src = make_immediate_reg_float(emit, 1.0f); in store_tesslevels()
5931 scalar_src(&temp_src, TGSI_SWIZZLE_X + i); in store_tesslevels()
5939 struct tgsi_full_src_register temp_src; in store_tesslevels() local
5942 temp_src = make_src_temp_reg(emit->tcs.inner.temp_index); in store_tesslevels()
5944 temp_src = make_immediate_reg_float(emit, 1.0f); in store_tesslevels()
[all …]