Lines Matching refs:Sem

667 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,  in makeNaN()  argument
669 APFloat value(Sem, uninitialized); in makeNaN()
3353 APFloat::initFromAPInt(const fltSemantics* Sem, const APInt& api) in initFromAPInt() argument
3355 if (Sem == &IEEEhalf) in initFromAPInt()
3357 if (Sem == &IEEEsingle) in initFromAPInt()
3359 if (Sem == &IEEEdouble) in initFromAPInt()
3361 if (Sem == &x87DoubleExtended) in initFromAPInt()
3363 if (Sem == &IEEEquad) in initFromAPInt()
3365 if (Sem == &PPCDoubleDouble) in initFromAPInt()
3392 unsigned APFloat::getSizeInBits(const fltSemantics &Sem) { in getSizeInBits() argument
3393 return Sem.sizeInBits; in getSizeInBits()
3435 APFloat APFloat::getLargest(const fltSemantics &Sem, bool Negative) { in getLargest() argument
3440 APFloat Val(Sem, uninitialized); in getLargest()
3445 APFloat APFloat::getSmallest(const fltSemantics &Sem, bool Negative) { in getSmallest() argument
3450 APFloat Val(Sem, uninitialized); in getSmallest()
3455 APFloat APFloat::getSmallestNormalized(const fltSemantics &Sem, bool Negative) { in getSmallestNormalized() argument
3456 APFloat Val(Sem, uninitialized); in getSmallestNormalized()
3466 Val.exponent = Sem.minExponent; in getSmallestNormalized()
3467 Val.significandParts()[partCountForBits(Sem.precision)-1] |= in getSmallestNormalized()
3468 (((integerPart) 1) << ((Sem.precision - 1) % integerPartWidth)); in getSmallestNormalized()
3473 APFloat::APFloat(const fltSemantics &Sem, const APInt &API) { in APFloat() argument
3474 initFromAPInt(&Sem, API); in APFloat()