Home
last modified time | relevance | path

Searched refs:isIEEE (Results 1 – 4 of 4) sorted by relevance

/external/llvm/include/llvm/ADT/
DAPFloat.h189 explicit APFloat(const APInt &, bool isIEEE = false);
255 static APFloat getAllOnesValue(unsigned BitWidth, bool isIEEE = false);
424 void initFromAPInt(const APInt& api, bool isIEEE = false);
/external/llvm/lib/Support/
DAPFloat.cpp3190 APFloat::initFromAPInt(const APInt& api, bool isIEEE) in initFromAPInt() argument
3201 return (isIEEE ? in initFromAPInt()
3208 APFloat::getAllOnesValue(unsigned BitWidth, bool isIEEE) in getAllOnesValue() argument
3210 return APFloat(APInt::getAllOnesValue(BitWidth), isIEEE); in getAllOnesValue()
3268 APFloat::APFloat(const APInt& api, bool isIEEE) : exponent2(0), sign2(0) { in APFloat() argument
3269 initFromAPInt(api, isIEEE); in APFloat()
/external/llvm/tools/llvm-stress/
Dllvm-stress.cpp373 bool isIEEE = !Ty->isX86_FP80Ty() && !Ty->isPPC_FP128Ty(); in Act() local
374 APFloat RandomFloat(RandomInt, isIEEE); in Act()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2007-10-1413255 to the standard uint32/64_t. Also removed curious "isIEEE()" function
13391 (KJS::JSImmediate::isIEEE):