Searched refs:is_double (Results 1 - 25 of 38) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dir_validate.cpp264 ir->operands[0]->type->is_double() ||
273 ir->type->is_double());
345 assert(ir->type->is_double());
349 assert(ir->type->is_double());
352 assert(ir->operands[0]->type->is_double());
356 assert(ir->operands[0]->type->is_double());
389 assert(ir->type->is_double());
393 assert(ir->type->is_double());
412 assert(ir->operands[0]->type->is_double());
428 assert(ir->operands[0]->type->is_double());
[all...]
H A Dir_equals.cpp61 if (type->is_double()) {
H A Dlower_buffer_access.cpp124 ? (deref->type->is_double() ? 8 : 4)
147 assert(deref->type->is_float() || deref->type->is_double());
H A Dlower_instructions.cpp206 assert(ir->operands[1]->type->is_float() || ir->operands[1]->type->is_double());
340 (lowering(DDIV_TO_MUL_RCP) && ir->type->is_double()))
346 if (lowering(DOPS_TO_DFRAC) && ir->type->is_double())
1735 if (ir->operands[0]->type->is_double())
1739 if (ir->operands[0]->type->is_double())
1751 (ir->operands[1]->type->is_double() && lowering(DDIV_TO_MUL_RCP)))
1766 if (lowering(MOD_TO_FLOOR) && (ir->type->is_float() || ir->type->is_double()))
1778 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->type->is_double())
1783 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->operands[0]->type->is_double())
1788 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->operands[0]->type->is_double())
[all...]
H A Dir_function.cpp152 if (to_type->is_double()) {
H A Dir_constant_expression.cpp59 assert(op0->type->is_double() && op1->type->is_double());
H A Dloop_analysis.cpp111 const ir_expression_operation op = iter->type->is_double()
H A Dast_function.cpp1609 assert(first_param->type->is_float() || first_param->type->is_double());
1706 if (!col_type->is_double()) {
H A Dopt_algebraic.cpp665 ir->type->is_float() || ir->type->is_double())) {
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dir_validate.cpp412 assert(ir->type->is_double());
416 assert(ir->type->is_double());
419 assert(ir->operands[0]->type->is_double());
423 assert(ir->operands[0]->type->is_double());
456 assert(ir->type->is_double());
460 assert(ir->type->is_double());
479 assert(ir->operands[0]->type->is_double());
495 assert(ir->operands[0]->type->is_double());
642 assert(ir->operands[0]->type->is_double());
647 assert(ir->type->is_double());
[all...]
H A Dir_equals.cpp61 if (type->is_double()) {
H A Dlower_buffer_access.cpp124 ? (deref->type->is_double() ? 8 : 4)
147 assert(deref->type->is_float() || deref->type->is_double());
H A Dlower_instructions.cpp347 (lowering(DDIV_TO_MUL_RCP) && ir->type->is_double()))
353 if (lowering(DOPS_TO_DFRAC) && ir->type->is_double())
1762 if (ir->operands[0]->type->is_double())
1766 if (ir->operands[0]->type->is_double())
1778 (ir->operands[1]->type->is_double() && lowering(DDIV_TO_MUL_RCP)))
1805 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->type->is_double())
1810 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->operands[0]->type->is_double())
1815 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->operands[0]->type->is_double())
1835 if (lowering(DOPS_TO_DFRAC) && ir->type->is_double())
1840 if (lowering(DOPS_TO_DFRAC) && ir->type->is_double())
[all...]
H A Dir_function.cpp153 if (to_type->is_double()) {
H A Dir_constant_expression.cpp59 assert(op0->type->is_double() && op1->type->is_double());
H A Dloop_analysis.cpp111 const ir_expression_operation op = iter->type->is_double()
H A Dopt_algebraic.cpp666 ir->type->is_float() || ir->type->is_double())) {
/xsrc/external/mit/MesaLib/dist/src/compiler/
H A Dglsl_types.h849 return base_type == GLSL_TYPE_FLOAT16 || is_float() || is_double();
857 return is_float() || is_double();
889 bool is_double() const function in struct:glsl_type
H A Dglsl_types.cpp275 return this->is_double();
1867 if ((!state || state->has_double()) && this->is_double())
1871 if ((!state || state->has_double()) && desired->is_double()) {
/xsrc/external/mit/MesaLib.old/dist/src/compiler/
H A Dglsl_types.h637 bool is_double() const function in struct:glsl_type
H A Dglsl_types.cpp265 return this->is_double();
1612 if ((!state || state->has_double()) && this->is_double())
1616 if ((!state || state->has_double()) && desired->is_double()) {
/xsrc/external/mit/MesaLib.old/src/compiler/glsl/
H A Dir_expression_operation_constant.h1205 if (op[0]->type->is_double())
1724 assert(op[0]->type->is_float() || op[0]->type->is_double());
1725 assert(op[1]->type->is_float() || op[1]->type->is_double());
1726 assert(op[2]->type->is_float() || op[2]->type->is_double());
/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_vec4.cpp2464 bool is_double = type_sz(inst->dst.type) == 8; local in function:brw::vec4_visitor::scalarize_df
2465 for (int arg = 0; !is_double && arg < 3; arg++) {
2466 is_double = inst->src[arg].file != BAD_FILE &&
2470 if (!is_double)
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_vec4.cpp2495 bool is_double = type_sz(inst->dst.type) == 8; local in function:brw::vec4_visitor::scalarize_df
2496 for (int arg = 0; !is_double && arg < 3; arg++) {
2497 is_double = inst->src[arg].file != BAD_FILE &&
2501 if (!is_double)
/xsrc/external/mit/MesaLib/src/compiler/glsl/
H A Dir_expression_operation_constant.h1442 if (op[0]->type->is_double())
1988 assert(op[0]->type->is_float() || op[0]->type->is_double());
1989 assert(op[1]->type->is_float() || op[1]->type->is_double());
1990 assert(op[2]->type->is_float() || op[2]->type->is_double());

Completed in 94 milliseconds

12