Searched refs:isIEEE (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DAPFloat.h189 explicit APFloat(const APInt &, bool isIEEE = false);
254 /// \param isIEEE - If 128 bit number, select between PPC and IEEE
255 static APFloat getAllOnesValue(unsigned BitWidth, bool isIEEE = false);
424 void initFromAPInt(const APInt& api, bool isIEEE = false);
/external/llvm/lib/Support/
H A DAPFloat.cpp3187 /// isIEEE argument distinguishes between PPC128 and IEEE128 (not meaningful
3190 APFloat::initFromAPInt(const APInt& api, bool isIEEE)
3201 return (isIEEE ?
3208 APFloat::getAllOnesValue(unsigned BitWidth, bool isIEEE)
3210 return APFloat(APInt::getAllOnesValue(BitWidth), isIEEE);
3268 APFloat::APFloat(const APInt& api, bool isIEEE) : exponent2(0), sign2(0) {
3269 initFromAPInt(api, isIEEE);
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp373 bool isIEEE = !Ty->isX86_FP80Ty() && !Ty->isPPC_FP128Ty(); local
374 APFloat RandomFloat(RandomInt, isIEEE);

Completed in 94 milliseconds