Searched defs:tmp_dst (Results 1 - 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_compiler.c523 struct tgsi_dst_register *tmp_dst,
528 tmp_dst->File = TGSI_FILE_TEMPORARY;
529 tmp_dst->WriteMask = TGSI_WRITEMASK_XYZW;
530 tmp_dst->Indirect = 0;
531 tmp_dst->Dimension = 0;
538 tmp_dst->Index = ctx->num_regs[TGSI_FILE_TEMPORARY] + n;
540 src_from_dst(tmp_src, tmp_dst);
690 struct tgsi_dst_register tmp_dst; local
694 get_internal_temp(ctx, &tmp_dst, &tmp_src);
698 add_dst_reg(ctx, alu, &tmp_dst);
522 get_internal_temp(struct fd2_compile_context *ctx, struct tgsi_dst_register *tmp_dst, struct tgsi_src_register *tmp_src) argument
741 struct tgsi_dst_register tmp_dst; local
836 struct tgsi_dst_register tmp_dst; local
921 struct tgsi_dst_register tmp_dst; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_nir.cpp1204 dst_reg tmp_dst = dst_reg(src_reg(this, glsl_type::dvec4_type)); local
1207 emit(VEC4_OPCODE_TO_DOUBLE, tmp_dst, tmp_src);
1208 vec4_instruction *inst = emit(MOV(dst, src_reg(tmp_dst)));
/external/mesa3d/src/mesa/program/
H A Dir_to_mesa.cpp2068 dst_reg tmp_dst = dst_reg(tmp_src); local
2073 tmp_dst.writemask = WRITEMASK_Z;
2074 emit(ir, OPCODE_MOV, tmp_dst, this->result);
2076 tmp_dst.writemask = WRITEMASK_XY;
2077 emit(ir, OPCODE_MOV, tmp_dst, coord);
/external/openssh/
H A Dsftp.c690 char *tmp_dst = NULL; local
699 tmp_dst = xstrdup(dst);
700 tmp_dst = make_absolute(tmp_dst, pwd);
712 if (tmp_dst != NULL)
713 dst_is_dir = remote_is_dir(conn, tmp_dst);
716 if (g.gl_matchc > 1 && tmp_dst && !dst_is_dir) {
718 "\"%s\" is not a directory", tmp_dst);
738 if (g.gl_matchc == 1 && tmp_dst) {
741 abs_dst = path_append(tmp_dst, filenam
[all...]
/external/webp/src/enc/
H A Dquant_enc.c925 uint8_t* const tmp_dst = it->yuv_out2_ + Y_OFF_ENC; // scratch buffer local
929 rd_cur->nz = ReconstructIntra16(it, rd_cur, tmp_dst, mode);
932 rd_cur->D = VP8SSE16x16(src, tmp_dst);
934 tlambda ? MULT_8B(tlambda, VP8TDisto16x16(src, tmp_dst, kWeightY)) : 0;
1002 uint8_t* tmp_dst = it->yuv_p_ + I4TMP; // scratch buffer. local
1012 ReconstructIntra4(it, tmp_levels, src, tmp_dst, mode) << it->i4_;
1015 rd_tmp.D = VP8SSE4x4(src, tmp_dst);
1017 tlambda ? MULT_8B(tlambda, VP8TDisto4x4(src, tmp_dst, kWeightY))
1039 SwapPtr(&tmp_dst, &best_block);
1076 uint8_t* tmp_dst local
1209 uint8_t* const tmp_dst = it->yuv_out2_ + Y_OFF_ENC + VP8Scan[it->i4_]; local
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_vgpu10.c3438 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
3448 emit_instruction_op2(emit, VGPU10_OPCODE_ISHL, &tmp_dst,
3450 emit_instruction_op2(emit, VGPU10_OPCODE_ISHR, &tmp_dst,
3554 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
3556 emit_instruction_op2(emit, VGPU10_OPCODE_LT, &tmp_dst,
3586 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
3591 writemask_dst(&tmp_dst, TGSI_WRITEMASK_X);
3635 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
3638 emit_instruction_op2(emit, VGPU10_OPCODE_DP3, &tmp_dst, &inst->Src[0],
3790 struct tgsi_full_dst_register tmp_dst local
3896 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4144 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4257 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4295 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4332 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4405 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4438 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4471 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4498 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4545 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4578 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4611 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4844 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
4901 struct tgsi_full_dst_register tmp_dst; member in struct:tex_swizzle_info
5215 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
6058 struct tgsi_full_dst_register tmp_dst = local
6086 struct tgsi_full_dst_register tmp_dst = local
6178 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
6352 struct tgsi_full_dst_register tmp_dst = make_dst_temp_reg(tmp); local
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp3935 st_dst_reg tmp_dst = st_dst_reg(tmp); local
3936 tmp_dst.writemask = WRITEMASK_XY;
3937 emit_asm(NULL, TGSI_OPCODE_MOV, tmp_dst, offset);
4117 st_dst_reg tmp_dst = st_dst_reg(tmp_src); local
4122 tmp_dst.writemask = WRITEMASK_Z;
4123 emit_asm(ir, TGSI_OPCODE_MOV, tmp_dst, this->result);
4125 tmp_dst.writemask = WRITEMASK_XY;
4126 emit_asm(ir, TGSI_OPCODE_MOV, tmp_dst, coord);

Completed in 251 milliseconds