Lines Matching defs:output

1584     // If the condition is true, overwrite the output, which already contains false.
1682 // Clear output register: setb only sets the low byte.
2189 // Make the output overlap to please the register allocator. This greatly simplifies
2201 // Make the output overlap to please the register allocator. This greatly simplifies
2476 Register output = out.AsRegister<Register>();
2480 __ movl(output, Immediate(kPrimIntMax));
2481 // temp = int-to-float(output)
2482 __ cvtsi2ss(temp, output);
2488 // output = float-to-int-truncate(input)
2489 __ cvttss2si(output, input);
2492 // output = 0
2493 __ xorl(output, output);
2501 Register output = out.AsRegister<Register>();
2505 __ movl(output, Immediate(kPrimIntMax));
2506 // temp = int-to-double(output)
2507 __ cvtsi2sd(temp, output);
2513 // output = double-to-int-truncate(input)
2514 __ cvttsd2si(output, input);
2517 // output = 0
2518 __ xorl(output, output);
2964 // Needed for imul on 32bits with 64bits output.
2997 // problems where the output may not be the same as the first operand.
3021 // output: in1
3451 // output and request another temp.
3552 // output and request another temp.
3684 // Can't have Location::Any() and output SameAsFirstInput()
3748 // Nothing to do if the shift is 0, as the input is already the output.
4552 // The output overlaps in case of long: we don't want the low move
4568 // output, 32 bits at a time).
5021 // The output overlaps in case of long: we don't want the low move
5217 // We need the inputs to be different than the output in case of long operation.