Lines Matching defs:Negative
911 void IEEEFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill) {
916 sign = Negative;
2592 // Negative zero loses info, but positive zero doesn't.
2634 // Negative zero can't be represented as an int.
2691 /* Negative numbers cannot be represented as unsigned. */
3994 void IEEEFloat::makeLargest(bool Negative) {
3996 // sign = {Negative}
4000 sign = Negative;
4023 void IEEEFloat::makeSmallest(bool Negative) {
4025 // sign = {Negative}
4029 sign = Negative;
4034 void IEEEFloat::makeSmallestNormalized(bool Negative) {
4036 // sign = {Negative}
4042 sign = Negative;
4593 void IEEEFloat::makeInf(bool Negative) {
4599 makeNaN(false, Negative);
4603 sign = Negative;
4608 void IEEEFloat::makeZero(bool Negative) {
4610 sign = Negative;