Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_vgpu10.c6949 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); in emit_puint_to_sscaled() local
6959 emit_instruction_op2(emit, VGPU10_OPCODE_ISHL, &tmp_dst, in emit_puint_to_sscaled()
6961 emit_instruction_op2(emit, VGPU10_OPCODE_ISHR, &tmp_dst, in emit_puint_to_sscaled()
7066 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); in emit_cmp() local
7068 emit_instruction_opn(emit, VGPU10_OPCODE_LT, &tmp_dst, in emit_cmp()
7251 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); in emit_exp() local
7262 tmp_dst = writemask_dst(&tmp_dst, TGSI_WRITEMASK_X); in emit_exp()
7266 emit_instruction_op1(emit, VGPU10_OPCODE_ROUND_NI, &tmp_dst, in emit_exp()
7361 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); in emit_cond_discard() local
7366 writemask_dst(&tmp_dst, TGSI_WRITEMASK_X); in emit_cond_discard()
[all …]
/third_party/skia/third_party/externals/libwebp/src/enc/
Dquant_enc.c995 uint8_t* const tmp_dst = it->yuv_out2_ + Y_OFF_ENC; // scratch buffer in PickBestIntra16() local
999 rd_cur->nz = ReconstructIntra16(it, rd_cur, tmp_dst, mode); in PickBestIntra16()
1002 rd_cur->D = VP8SSE16x16(src, tmp_dst); in PickBestIntra16()
1004 tlambda ? MULT_8B(tlambda, VP8TDisto16x16(src, tmp_dst, kWeightY)) : 0; in PickBestIntra16()
1076 uint8_t* tmp_dst = it->yuv_p_ + I4TMP; // scratch buffer. in PickBestIntra4() local
1086 ReconstructIntra4(it, tmp_levels, src, tmp_dst, mode) << it->i4_; in PickBestIntra4()
1089 rd_tmp.D = VP8SSE4x4(src, tmp_dst); in PickBestIntra4()
1091 tlambda ? MULT_8B(tlambda, VP8TDisto4x4(src, tmp_dst, kWeightY)) in PickBestIntra4()
1114 SwapPtr(&tmp_dst, &best_block); in PickBestIntra4()
1151 uint8_t* tmp_dst = it->yuv_out2_ + U_OFF_ENC; // scratch buffer in PickBestUV() local
[all …]
/third_party/mesa3d/src/intel/compiler/
Dbrw_vec4_visitor.cpp392 dst_reg tmp_dst(this, glsl_type::uvec2_type); in emit_pack_half_2x16() local
393 src_reg tmp_src(tmp_dst); in emit_pack_half_2x16()
403 emit(MOV(tmp_dst, brw_imm_ud(0x12345678u))); in emit_pack_half_2x16()
415 tmp_dst.writemask = WRITEMASK_XY; in emit_pack_half_2x16()
416 emit(F32TO16(tmp_dst, src0)); in emit_pack_half_2x16()
457 dst_reg tmp_dst(this, glsl_type::uvec2_type); in emit_unpack_half_2x16() local
458 src_reg tmp_src(tmp_dst); in emit_unpack_half_2x16()
460 tmp_dst.writemask = WRITEMASK_X; in emit_unpack_half_2x16()
461 emit(AND(tmp_dst, src0, brw_imm_ud(0xffffu))); in emit_unpack_half_2x16()
463 tmp_dst.writemask = WRITEMASK_Y; in emit_unpack_half_2x16()
[all …]
Dbrw_vec4_nir.cpp905 dst_reg tmp_dst = dst_reg(src_reg(this, glsl_type::dvec4_type)); in emit_conversion_to_double() local
908 emit(VEC4_OPCODE_TO_DOUBLE, tmp_dst, tmp_src); in emit_conversion_to_double()
909 emit(MOV(dst, src_reg(tmp_dst))); in emit_conversion_to_double()
/third_party/ffmpeg/libavcodec/mips/
Dhevcpred_msa.c99 uint8_t *tmp_dst = dst; in hevc_intra_pred_vert_8x8_msa() local
109 SD(src_data1, tmp_dst); in hevc_intra_pred_vert_8x8_msa()
110 tmp_dst += stride; in hevc_intra_pred_vert_8x8_msa()
155 uint8_t *tmp_dst = dst; in hevc_intra_pred_vert_16x16_msa() local
163 ST_UB(src, tmp_dst); in hevc_intra_pred_vert_16x16_msa()
164 tmp_dst += stride; in hevc_intra_pred_vert_16x16_msa()
269 uint8_t *tmp_dst = dst; in hevc_intra_pred_horiz_16x16_msa() local
289 ST_SB4(src0, src1, src2, src3, tmp_dst, stride); in hevc_intra_pred_horiz_16x16_msa()
290 tmp_dst += (4 * stride); in hevc_intra_pred_horiz_16x16_msa()
345 uint8_t *tmp_dst = dst; in hevc_intra_pred_dc_4x4_msa() local
[all …]
/third_party/mesa3d/src/vulkan/util/
Dvk_cmd_queue_gen.py470 tmp_dst = "%s *tmp_dst%d = (void *) %s; (void) tmp_dst%d;" % (src_type, level, dst, level)
483 … %s \n %s } else {\n %s\n }" % (if_stmt, allocation, copy, tmp_dst, tmp_src, member_…
/third_party/mesa3d/src/amd/compiler/
Daco_instruction_selection.cpp422 Temp tmp_dst = bld.tmp(RegClass::get(RegType::vgpr, 2 * num_components)); in expand_vector() local
423 expand_vector(ctx, vec_src, tmp_dst, num_components, mask, zero_padding); in expand_vector()
424 bld.pseudo(aco_opcode::p_as_uniform, Definition(dst), tmp_dst); in expand_vector()
425 ctx->allocated_vec[dst.id()] = ctx->allocated_vec[tmp_dst.id()]; in expand_vector()
7540 Definition tmp_dst(dst.type() == RegType::vgpr ? dst : bld.tmp(is64bit ? v4 : v2)); in visit_access_shared2_amd() local
7543 ds = bld.ds(op, tmp_dst, address, m, offset0, offset1); in visit_access_shared2_amd()
8818 Temp tmp_dst = emit_reduction_instr(ctx, aco_op, reduce_op, cluster_size, in visit_intrinsic() local
8820 emit_wqm(bld, tmp_dst, dst); in visit_intrinsic()
9659 Temp tmp_dst = dst; in visit_tex() local
9669 tmp_dst = bld.tmp(instr->is_sparse ? v5 : (d16 ? v2 : v4)); in visit_tex()
[all …]