Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_vec4_visitor.cpp257 vec4_visitor::emit_math(opcode opcode, dst_reg dst, src_reg src) in emit_math() function in brw::vec4_visitor
329 vec4_visitor::emit_math(enum opcode opcode, in emit_math() function in brw::vec4_visitor
1081 emit_math(SHADER_OPCODE_RCP, result_dst, op[0]); in visit()
1085 emit_math(SHADER_OPCODE_EXP2, result_dst, op[0]); in visit()
1088 emit_math(SHADER_OPCODE_LOG2, result_dst, op[0]); in visit()
1096 emit_math(SHADER_OPCODE_SIN, result_dst, op[0]); in visit()
1100 emit_math(SHADER_OPCODE_COS, result_dst, op[0]); in visit()
1141 emit_math(SHADER_OPCODE_INT_QUOTIENT, result_dst, op[0], op[1]); in visit()
1146 emit_math(SHADER_OPCODE_INT_REMAINDER, result_dst, op[0], op[1]); in visit()
1216 emit_math(SHADER_OPCODE_SQRT, result_dst, op[0]); in visit()
[all …]
Dbrw_fs_visitor.cpp325 emit_math(SHADER_OPCODE_RCP, this->result, op[0]); in visit()
329 emit_math(SHADER_OPCODE_EXP2, this->result, op[0]); in visit()
332 emit_math(SHADER_OPCODE_LOG2, this->result, op[0]); in visit()
340 emit_math(SHADER_OPCODE_SIN, this->result, op[0]); in visit()
344 emit_math(SHADER_OPCODE_COS, this->result, op[0]); in visit()
389 emit_math(SHADER_OPCODE_INT_QUOTIENT, this->result, op[0], op[1]); in visit()
397 emit_math(SHADER_OPCODE_INT_REMAINDER, this->result, op[0], op[1]); in visit()
449 emit_math(SHADER_OPCODE_SQRT, this->result, op[0]); in visit()
453 emit_math(SHADER_OPCODE_RSQ, this->result, op[0]); in visit()
556 emit_math(SHADER_OPCODE_POW, this->result, op[0], op[1]); in visit()
[all …]
Dbrw_fs.h316 fs_inst *emit_math(enum opcode op, fs_reg dst, fs_reg src0);
317 fs_inst *emit_math(enum opcode op, fs_reg dst, fs_reg src0, fs_reg src1);
Dbrw_vec4.h406 void emit_math(enum opcode opcode, dst_reg dst, src_reg src);
409 void emit_math(enum opcode opcode, dst_reg dst, src_reg src0, src_reg src1);
Dbrw_fs.cpp788 fs_visitor::emit_math(enum opcode opcode, fs_reg dst, fs_reg src) in emit_math() function in fs_visitor
831 fs_visitor::emit_math(enum opcode opcode, fs_reg dst, fs_reg src0, fs_reg src1) in emit_math() function in fs_visitor