Lines Matching defs:output

1608     // If the condition is true, overwrite the output, which already contains false.
1680 // Clear output register: setcc only sets the low byte.
1694 // Clear output register: setcc only sets the low byte.
2610 CpuRegister output = out.AsRegister<CpuRegister>();
2613 __ movl(output, Immediate(kPrimIntMax));
2619 // output = float-to-int-truncate(input)
2620 __ cvttss2si(output, input, false);
2623 // output = 0
2624 __ xorl(output, output);
2632 CpuRegister output = out.AsRegister<CpuRegister>();
2635 __ movl(output, Immediate(kPrimIntMax));
2641 // output = double-to-int-truncate(input)
2642 __ cvttsd2si(output, input);
2645 // output = 0
2646 __ xorl(output, output);
2674 CpuRegister output = out.AsRegister<CpuRegister>();
2677 codegen_->Load64BitValue(output, kPrimLongMax);
2683 // output = float-to-long-truncate(input)
2684 __ cvttss2si(output, input, true);
2687 // output = 0
2688 __ xorl(output, output);
2696 CpuRegister output = out.AsRegister<CpuRegister>();
2699 codegen_->Load64BitValue(output, kPrimLongMax);
2705 // output = double-to-long-truncate(input)
2706 __ cvttsd2si(output, input, true);
2709 // output = 0
2710 __ xorl(output, output);
3127 // problems where the output may not be the same as the first operand.
3143 // problems where the output may not be the same as the first operand.
3556 // output and request another temp.
3639 // output and request another temp.
4089 // The output overlaps for an object field get when read barriers
4525 // The output overlaps for an object array get when read barriers