HomeSort by relevance Sort by last modified time
    Searched refs:postFactor (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_print.cpp 638 if (postFactor)
639 PRINT("x2^%i ", postFactor);
nv50_ir_peephole.cpp 540 res.data.f32 = a->data.f32 * b->data.f32 * exp2f(i->postFactor);
696 i->postFactor = 0;
761 res.data.f32 = a->data.f32 * b->data.f32 * exp2f(i->postFactor) +
847 float f = imm2.reg.data.f32 * exp2f(mul2->postFactor);
872 mul1->postFactor = e;
896 mul2->postFactor = e;
994 i->postFactor = 0;
997 if (!i->postFactor && (imm0.isInteger(1) || imm0.isInteger(-1))) {
1010 if (!i->postFactor && (imm0.isInteger(2) || imm0.isInteger(-2))) {
1025 if (i->postFactor && i->sType == TYPE_F32)
    [all...]
nv50_ir_emit_gk110.cpp 575 assert(i->postFactor >= -3 && i->postFactor <= 3);
586 assert(i->postFactor == 0);
589 code[1] |= ((i->postFactor > 0) ?
590 (7 - i->postFactor) : (0 - i->postFactor)) << 12;
612 assert(!i->postFactor);
    [all...]
nv50_ir.cpp 576 postFactor = 0;
761 i->postFactor = postFactor;
nv50_ir_emit_nvc0.cpp 594 assert(i->postFactor >= -3 && i->postFactor <= 3);
598 assert(i->postFactor == 0); // constant folded, hopefully
603 code[1] |= ((i->postFactor > 0) ?
604 (7 - i->postFactor) : (0 - i->postFactor)) << 17;
618 assert(!neg && !i->saturate && !i->ftz && !i->postFactor);
637 assert(!i->postFactor);
    [all...]
nv50_ir_emit_gm107.cpp 498 assert(insn->postFactor >= -3 && insn->postFactor <= 3);
499 if (insn->postFactor > 0)
500 emitField(pos, 3, 7 - insn->postFactor);
502 emitField(pos, 3, 0 - insn->postFactor);
    [all...]
nv50_ir.h 890 int8_t postFactor; // MUL/DIV(if < 0) by 1 << postFactor
    [all...]

Completed in 1566 milliseconds