Home
last modified time | relevance | path

Searched refs:temp_dst (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_wm_emit.c266 struct brw_reg temp_dst; in emit_pixel_w() local
269 temp_dst = dst[3]; in emit_pixel_w()
271 temp_dst = brw_message_reg(2); in emit_pixel_w()
285 brw_PLN(p, temp_dst, interp3, deltas[0]); in emit_pixel_w()
288 brw_MAC(p, temp_dst, suboffset(interp3, 1), deltas[1]); in emit_pixel_w()
293 src = temp_dst; in emit_pixel_w()
964 struct brw_reg temp_dst = dst[dst_chan]; in emit_math2() local
967 brw_MOV(p, temp_dst, src0); in emit_math2()
968 src0 = temp_dst; in emit_math2()
989 temp_dst, in emit_math2()
[all …]
Dbrw_vec4_visitor.cpp238 dst_reg temp_dst = dst_reg(this, glsl_type::vec4_type); in emit_math1_gen6() local
240 emit(opcode, temp_dst, temp_src); in emit_math1_gen6()
242 emit(MOV(dst, src_reg(temp_dst))); in emit_math1_gen6()
308 dst_reg temp_dst = dst_reg(this, glsl_type::vec4_type); in emit_math2_gen6() local
309 temp_dst.type = dst.type; in emit_math2_gen6()
311 emit(opcode, temp_dst, src0, src1); in emit_math2_gen6()
313 emit(MOV(dst, src_reg(temp_dst))); in emit_math2_gen6()
/external/opencv/cv/src/
Dcvsubdivision2d.cpp475 CvSubdiv2DPoint *temp_dst = 0, *curr_org = 0, *curr_dst = 0; in cvSubdivDelaunay2DInsert() local
478 temp_dst = cvSubdiv2DEdgeDst( temp_edge ); in cvSubdivDelaunay2DInsert()
482 if( icvIsRightOf( temp_dst->pt, curr_edge ) > 0 && in cvSubdivDelaunay2DInsert()
483 icvIsPtInCircle3( curr_org->pt, temp_dst->pt, in cvSubdivDelaunay2DInsert()
/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi.cpp1545 st_dst_reg temp_dst = st_dst_reg(temp); in visit() local
1555 temp_dst.writemask = WRITEMASK_Y; in visit()
1558 emit(ir, TGSI_OPCODE_AND, temp_dst, temp1, temp2); in visit()
1561 temp_dst.writemask = WRITEMASK_X; in visit()
1564 emit(ir, TGSI_OPCODE_AND, temp_dst, temp1, temp2); in visit()
1565 temp_dst.writemask = WRITEMASK_Y; in visit()
1568 emit(ir, TGSI_OPCODE_AND, temp_dst, temp1, temp2); in visit()
1604 st_dst_reg temp_dst = st_dst_reg(temp); in visit() local
1612 temp_dst.writemask = WRITEMASK_Y; in visit()
1615 emit(ir, TGSI_OPCODE_OR, temp_dst, temp1, temp2); in visit()
[all …]
/external/mesa3d/src/mesa/main/
Dmipmap.c2024 GLubyte *temp_src = NULL, *temp_dst = NULL; in generate_mipmap_compressed() local
2104 if (!temp_dst) { in generate_mipmap_compressed()
2105 temp_dst = (GLubyte *) malloc(temp_dst_stride * dstHeight); in generate_mipmap_compressed()
2106 if (!temp_dst) { in generate_mipmap_compressed()
2116 free(temp_dst); in generate_mipmap_compressed()
2126 &temp_dst, temp_dst_stride); in generate_mipmap_compressed()
2132 free(temp_dst); in generate_mipmap_compressed()
2140 temp_dst, &ctx->DefaultPacking); in generate_mipmap_compressed()
2145 temp_src = temp_dst; in generate_mipmap_compressed()
2146 temp_dst = temp; in generate_mipmap_compressed()
[all …]