Lines Matching defs:sign
1737 // mode of the {truncation}; and for modulus the sign of the
1790 // mode of the {truncation}; and for modulus the sign of the
2599 // mode of the {truncation}; and for modulus the sign of the
2978 // sign. This is done by shifting the value left and then back
4620 // let sign = input >> 31 in
4621 // (input ^ sign) - sign
4623 Node* sign = graph()->NewNode(machine()->Word32Sar(), input,
4626 graph()->NewNode(machine()->Word32Xor(), input, sign),
4627 sign);