Home
last modified time | relevance | path

Searched refs:OPCODE_MUL (Results 1 – 19 of 19) sorted by relevance

/external/mesa3d/src/mesa/main/
Dffvertex_prog.c674 emit_op2(p, OPCODE_MUL, tmp, 0, swizzle1(src,X), mat[0]); in emit_transpose_matrix_transform_vec4()
702 emit_op2(p, OPCODE_MUL, dest, 0, src, swizzle1(tmp, X)); in emit_normalize_vec3()
812 emit_op2( p, OPCODE_MUL, transformed_normal, 0, normal, rescale ); in get_transformed_normal()
925 emit_op2(p, OPCODE_MUL, tmp, 0, light_value, material_value); in get_lightprod()
956 emit_op2(p, OPCODE_MUL, att, 0, slt, spot); in calculate_light_attenuation()
972 emit_op2(p, OPCODE_MUL, dist, WRITEMASK_XZ, dist, swizzle1(dist,Y)); in calculate_light_attenuation()
980 emit_op2(p, OPCODE_MUL, att, 0, dist, att); in calculate_light_attenuation()
1134 emit_op2(p, OPCODE_MUL, VPpli, 0, VPpli, dist); in build_lighting()
1204 emit_op2(p, OPCODE_MUL, lit, 0, lit, att); in build_lighting()
1265 emit_op2(p, OPCODE_MUL, lit, 0, lit, att); in build_lighting()
[all …]
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp607 case sw::Shader::OPCODE_MUL: in getOpcode()
741 emit(sw::Shader::OPCODE_MUL, result, i, left, i, right); in visitBinary()
769 Instruction *mul = emit(sw::Shader::OPCODE_MUL, result, i, left, 0, right, i); in visitBinary()
823 …case EOpMulAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_MUL, result), re… in visitBinary()
824 …case EOpMul: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_MUL, result), re… in visitBinary()
869 …sScalarAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_MUL, left), result, … in visitBinary()
870 …case EOpVectorTimesScalar: if(visit == PostVisit) emit(getOpcode(sw::Shader::OPCODE_MUL, lef… in visitBinary()
878 emit(sw::Shader::OPCODE_MUL, result, i, left, i, right, 0); in visitBinary()
885 emit(sw::Shader::OPCODE_MUL, result, i, left, 0, right, i); in visitBinary()
907 Instruction *mul = emit(sw::Shader::OPCODE_MUL, result, left, right); in visitBinary()
[all …]
/external/mesa3d/src/mesa/program/
Dprogramopt.c160 newInst[0].Opcode = OPCODE_MUL; in _mesa_insert_mvp_mad_code()
339 inst->Opcode = OPCODE_MUL; in _mesa_append_fog_code()
353 inst->Opcode = OPCODE_MUL; in _mesa_append_fog_code()
Dprog_instruction.h151 OPCODE_MUL, /* X X X X X */ enumerator
Dprog_instruction.c130 { OPCODE_MUL, "MUL", 2, 1 },
Dir_to_mesa.cpp1109 emit(ir, OPCODE_MUL, result_dst, op[0], op[1]); in visit()
1117 emit(ir, OPCODE_MUL, result_dst, op[0], op[1]); in visit()
1233 emit(ir, OPCODE_MUL, result_dst, op[0], op[1]); in visit()
1246 emit(ir, OPCODE_MUL, result_dst, result_src, op[0]); in visit()
1522 emit(ir, OPCODE_MUL, dst_reg(index_reg), in visit()
2081 emit(ir, OPCODE_MUL, coord_dst, tmp_src, coord_w); in visit()
Dprog_opt_constant_fold.c219 case OPCODE_MUL: in _mesa_constant_fold()
Dprog_optimize.c70 case OPCODE_MUL: in get_src_arg_mask()
645 case OPCODE_MUL: in _mesa_merge_mov_into_inst()
Dprog_to_nir.c677 [OPCODE_MUL] = nir_op_fmul,
Dprog_execute.c853 case OPCODE_MUL: in _mesa_execute_program()
/external/swiftshader/src/Shader/
DShader.hpp43 OPCODE_MUL, enumerator
DPixelShader.cpp618 case Shader::OPCODE_MUL: in analyzeInterpolants()
DShader.cpp772 case OPCODE_MUL: return "mul"; in operationString()
DVertexProgram.cpp247 case Shader::OPCODE_MUL: mul(d, s0, s1); break; in program()
DPixelProgram.cpp174 case Shader::OPCODE_MUL: mul(d, s0, s1); break; in applyShader()
DPixelPipeline.cpp124 case Shader::OPCODE_MUL: MUL(d, s0, s1); break; in applyShader()
/external/mesa3d/src/mesa/state_tracker/
Dst_mesa_to_tgsi.c470 case OPCODE_MUL: in translate_opcode()
/external/mesa3d/src/mesa/drivers/dri/i915/
Di915_fragprog.c682 case OPCODE_MUL: in upload_program()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_vertprog.c321 case OPCODE_MUL: return R200_VPI_OUT_OP_MUL; in t_opcode()