Lines Matching refs:Sem

670 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,  in makeNaN()  argument
672 APFloat value(Sem, uninitialized); in makeNaN()
3356 APFloat::initFromAPInt(const fltSemantics* Sem, const APInt& api) in initFromAPInt() argument
3358 if (Sem == &IEEEhalf) in initFromAPInt()
3360 if (Sem == &IEEEsingle) in initFromAPInt()
3362 if (Sem == &IEEEdouble) in initFromAPInt()
3364 if (Sem == &x87DoubleExtended) in initFromAPInt()
3366 if (Sem == &IEEEquad) in initFromAPInt()
3368 if (Sem == &PPCDoubleDouble) in initFromAPInt()
3395 unsigned APFloat::getSizeInBits(const fltSemantics &Sem) { in getSizeInBits() argument
3396 return Sem.sizeInBits; in getSizeInBits()
3438 APFloat APFloat::getLargest(const fltSemantics &Sem, bool Negative) { in getLargest() argument
3443 APFloat Val(Sem, uninitialized); in getLargest()
3448 APFloat APFloat::getSmallest(const fltSemantics &Sem, bool Negative) { in getSmallest() argument
3453 APFloat Val(Sem, uninitialized); in getSmallest()
3458 APFloat APFloat::getSmallestNormalized(const fltSemantics &Sem, bool Negative) { in getSmallestNormalized() argument
3459 APFloat Val(Sem, uninitialized); in getSmallestNormalized()
3469 Val.exponent = Sem.minExponent; in getSmallestNormalized()
3470 Val.significandParts()[partCountForBits(Sem.precision)-1] |= in getSmallestNormalized()
3471 (((integerPart) 1) << ((Sem.precision - 1) % integerPartWidth)); in getSmallestNormalized()
3476 APFloat::APFloat(const fltSemantics &Sem, const APInt &API) { in APFloat() argument
3477 initFromAPInt(&Sem, API); in APFloat()