/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi_vgpu10.c | 6296 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); in emit_puint_to_sscaled() local 6306 emit_instruction_op2(emit, VGPU10_OPCODE_ISHL, &tmp_dst, in emit_puint_to_sscaled() 6308 emit_instruction_op2(emit, VGPU10_OPCODE_ISHR, &tmp_dst, in emit_puint_to_sscaled() 6413 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); in emit_cmp() local 6415 emit_instruction_opn(emit, VGPU10_OPCODE_LT, &tmp_dst, in emit_cmp() 6598 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); in emit_exp() local 6609 tmp_dst = writemask_dst(&tmp_dst, TGSI_WRITEMASK_X); in emit_exp() 6613 emit_instruction_op1(emit, VGPU10_OPCODE_ROUND_NI, &tmp_dst, in emit_exp() 6708 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); in emit_kill_if() local 6713 writemask_dst(&tmp_dst, TGSI_WRITEMASK_X); in emit_kill_if() [all …]
|
/external/webp/src/enc/ |
D | quant_enc.c | 995 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 …]
|
/external/openssh/ |
D | sftp.c | 734 char *tmp_dst = NULL; in process_put() local 743 tmp_dst = xstrdup(dst); in process_put() 744 tmp_dst = make_absolute(tmp_dst, pwd); in process_put() 756 if (tmp_dst != NULL) in process_put() 757 dst_is_dir = remote_is_dir(conn, tmp_dst); in process_put() 760 if (g.gl_matchc > 1 && tmp_dst && !dst_is_dir) { in process_put() 762 "\"%s\" is not a directory", tmp_dst); in process_put() 782 if (g.gl_matchc == 1 && tmp_dst) { in process_put() 785 abs_dst = path_append(tmp_dst, filename); in process_put() 787 abs_dst = xstrdup(tmp_dst); in process_put() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | compound_type.h | 38 const BUFFER_SET *tmp_dst,
|
D | interp_search.h | 77 const BUFFER_SET *const tmp_dst, const BUFFER_SET *const orig_dst,
|
D | pickcdef.c | 397 DECLARE_ALIGNED(32, uint16_t, tmp_dst[1 << (MAX_SB_SIZE_LOG2 * 2)]); in av1_cdef_search() 499 NULL, tmp_dst, CDEF_BSTRIDE, in, xdec[pli], ydec[pli], dir, in av1_cdef_search() 503 ref_buffer[pli], ref_stride[pli], tmp_dst, dlist, cdef_count, in av1_cdef_search()
|
D | interp_search.c | 610 const BUFFER_SET *const tmp_dst, const BUFFER_SET *const orig_dst, in av1_interpolation_filter_search() argument 706 restore_dst_buf(xd, *tmp_dst, num_planes); in av1_interpolation_filter_search() 707 const BUFFER_SET *dst_bufs[2] = { tmp_dst, orig_dst }; in av1_interpolation_filter_search()
|
D | compound_type.c | 1202 const BUFFER_SET *tmp_dst, in av1_compound_type_rd() argument 1313 restore_dst_buf(xd, *tmp_dst, 1); in av1_compound_type_rd() 1331 restore_dst_buf(xd, *tmp_dst, 1); in av1_compound_type_rd() 1368 if (best_type == COMPOUND_AVERAGE) restore_dst_buf(xd, *tmp_dst, 1); in av1_compound_type_rd() 1378 if (valid_comp_types[0] != COMPOUND_AVERAGE) restore_dst_buf(xd, *tmp_dst, 1); in av1_compound_type_rd() 1443 if (cur_type == COMPOUND_AVERAGE) restore_dst_buf(xd, *tmp_dst, 1); in av1_compound_type_rd()
|
D | rdopt.c | 2259 const BUFFER_SET tmp_dst = { { tmp_buf, tmp_buf + 1 * MAX_SB_SQUARE, in handle_inter_mode() local 2501 &orig_dst, &tmp_dst, rd_buffers, &rate_mv, &best_rd_compound, in handle_inter_mode() 2532 x, cpi, tile_data, bsize, &tmp_dst, &orig_dst, &rd, &rs, in handle_inter_mode()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_vec4_visitor.cpp | 392 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 …]
|
D | brw_vec4_nir.cpp | 894 dst_reg tmp_dst = dst_reg(src_reg(this, glsl_type::dvec4_type)); in emit_conversion_to_double() local 897 emit(VEC4_OPCODE_TO_DOUBLE, tmp_dst, tmp_src); in emit_conversion_to_double() 898 emit(MOV(dst, src_reg(tmp_dst))); in emit_conversion_to_double()
|
/external/libaom/libaom/av1/common/arm/ |
D | warp_plane_neon.c | 222 int16x8_t *tmp_dst, int sx, int alpha, in horizontal_filter_neon() argument 306 tmp_dst[k + 7] = vreinterpretq_s16_u16(res); in horizontal_filter_neon()
|
/external/mesa3d/src/mesa/program/ |
D | ir_to_mesa.cpp | 2028 dst_reg tmp_dst = dst_reg(tmp_src); in visit() local 2033 tmp_dst.writemask = WRITEMASK_Z; in visit() 2034 emit(ir, OPCODE_MOV, tmp_dst, this->result); in visit() 2036 tmp_dst.writemask = WRITEMASK_XY; in visit() 2037 emit(ir, OPCODE_MOV, tmp_dst, coord); in visit()
|
/external/mesa3d/src/amd/compiler/ |
D | aco_instruction_selection.cpp | 8090 …Temp tmp_dst = emit_reduction_instr(ctx, aco_op, reduce_op, cluster_size, bld.def(dst.regClass()),… in visit_intrinsic() local 8091 emit_wqm(ctx, tmp_dst, dst); in visit_intrinsic() 8894 Temp tmp_dst = dst; in visit_tex() local 8904 tmp_dst = bld.tmp(v4); in visit_tex() 8906 tmp_dst = bld.tmp(v1); in visit_tex() 8908 tmp_dst = bld.tmp(RegClass(RegType::vgpr, util_bitcount(dmask))); in visit_tex() 8920 if (tmp_dst.id() == dst.id() && div_by_6) in visit_tex() 8921 tmp_dst = bld.tmp(tmp_dst.regClass()); in visit_tex() 8938 tex->definitions[0] = Definition(tmp_dst); in visit_tex() 8944 emit_split_vector(ctx, tmp_dst, tmp_dst.size()); in visit_tex() [all …]
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_tgsi.cpp | 4247 st_dst_reg tmp_dst = st_dst_reg(tmp); in canonicalize_gather_offset() local 4248 tmp_dst.writemask = WRITEMASK_XY; in canonicalize_gather_offset() 4249 emit_asm(NULL, TGSI_OPCODE_MOV, tmp_dst, offset); in canonicalize_gather_offset() 4475 st_dst_reg tmp_dst = st_dst_reg(tmp_src); in visit() local 4480 tmp_dst.writemask = WRITEMASK_Z; in visit() 4481 emit_asm(ir, TGSI_OPCODE_MOV, tmp_dst, this->result); in visit() 4483 tmp_dst.writemask = WRITEMASK_XY; in visit() 4484 emit_asm(ir, TGSI_OPCODE_MOV, tmp_dst, coord); in visit()
|
/external/libaom/libaom/av1/common/ |
D | reconinter.c | 676 uint8_t *tmp_dst = in av1_make_masked_inter_predictor() local 688 av1_make_inter_predictor(pre, pre_stride, tmp_dst, MAX_SB_SIZE, in av1_make_masked_inter_predictor()
|
/external/libhevc/common/arm/ |
D | ihevc_resi_trans_32x32_a9q.s | 151 @R7 tmp_dst Nx4 block stride 154 @R10 tmp_dst Nx4 block offset
|
D | ihevc_resi_trans.s | 1050 @R7 tmp_dst Nx4 block stride 1053 @R10 tmp_dst Nx4 block offset
|