Searched refs:temp_src (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp8/common/mips/msa/ |
D | loopfilter_filters_msa.c | 291 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/libvpx/vpx_dsp/mips/ |
D | loopfilter_8_msa.c | 232 uint8_t *temp_src; in vpx_lpf_vertical_8_dual_msa() local 244 temp_src = src - 4; in vpx_lpf_vertical_8_dual_msa() 246 LD_UB8(temp_src, pitch, p0, p1, p2, p3, row4, row5, row6, row7); in vpx_lpf_vertical_8_dual_msa() 247 temp_src += (8 * pitch); in vpx_lpf_vertical_8_dual_msa() 248 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/ |
D | r500_fragprog.c | 164 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/ |
D | cpdf_colorspace.cpp | 966 uint8_t* temp_src = FX_Alloc2D(uint8_t, nMaxColors, m_nComponents); in TranslateImageLine() local 967 uint8_t* pSrc = temp_src; in TranslateImageLine() 978 m_pProfile->m_pTransform, m_pCache, temp_src, nMaxColors); in TranslateImageLine() 979 FX_Free(temp_src); in TranslateImageLine()
|
/external/mesa3d/src/mesa/main/ |
D | mipmap.c | 2024 GLubyte *temp_src = NULL, *temp_dst = NULL; in generate_mipmap_compressed() local 2056 temp_src = (GLubyte *) malloc(temp_src_stride * srcImage->Height + 20); in generate_mipmap_compressed() 2057 if (!temp_src) { in generate_mipmap_compressed() 2073 temp_src, srcImage); in generate_mipmap_compressed() 2123 (const GLubyte **) &temp_src, in generate_mipmap_compressed() 2144 GLubyte *temp = temp_src; in generate_mipmap_compressed() 2145 temp_src = temp_dst; in generate_mipmap_compressed() 2151 free(temp_src); in generate_mipmap_compressed()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_vec4_visitor.cpp | 231 src_reg temp_src = src_reg(this, glsl_type::vec4_type); in emit_math1_gen6() local 232 emit(MOV(dst_reg(temp_src), src)); in emit_math1_gen6() 240 emit(opcode, temp_dst, temp_src); in emit_math1_gen6() 244 emit(opcode, dst, temp_src); in emit_math1_gen6()
|