Home | History | Annotate | Download | only in Support

Lines Matching refs:Negative

179   bool negative, overflow;
184 negative = *p == '-';
208 if (negative)
216 exponent = negative ? -32768: 32767;
632 void APFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill)
635 sign = Negative;
679 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,
682 value.makeNaN(SNaN, Negative, fill);
756 fltCategory ourCategory, bool negative)
761 sign = negative;
1828 /* Compare absolute values; invert result if negative. */
1957 // Negative zero can't be represented as an int.
2012 /* Negative numbers cannot be represented as unsigned. */
2018 maximally negative integer is a special case. */
2047 except for negative zeroes.
2164 /* If we're signed and negative negate a copy. */
3213 APFloat APFloat::getLargest(const fltSemantics &Sem, bool Negative) {
3214 APFloat Val(Sem, fcNormal, Negative);
3217 // sign = {Negative}
3238 APFloat APFloat::getSmallest(const fltSemantics &Sem, bool Negative) {
3239 APFloat Val(Sem, fcNormal, Negative);
3242 // sign = {Negative}
3252 APFloat APFloat::getSmallestNormalized(const fltSemantics &Sem, bool Negative) {
3253 APFloat Val(Sem, fcNormal, Negative);
3256 // sign = {Negative}
3551 // Non-scientific, negative exponents.