/external/clang/lib/Basic/ |
D | TargetInfo.cpp | 73 HalfFormat = &llvm::APFloat::IEEEhalf; in TargetInfo() 318 HalfFormat = &llvm::APFloat::IEEEhalf; in adjust()
|
/external/llvm/lib/IR/ |
D | Constants.cpp | 201 APFloat::getZero(APFloat::IEEEhalf)); in getNullValue() 609 return &APFloat::IEEEhalf; in TypeToFloatSemantics() 694 if (&V.getSemantics() == &APFloat::IEEEhalf) in get() 1220 if (&Val2.getSemantics() == &APFloat::IEEEhalf) in isValueValidForType() 1222 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo); in isValueValidForType() 1232 if (&Val2.getSemantics() == &APFloat::IEEEhalf || in isValueValidForType() 1240 return &Val2.getSemantics() == &APFloat::IEEEhalf || in isValueValidForType() 1245 return &Val2.getSemantics() == &APFloat::IEEEhalf || in isValueValidForType() 1250 return &Val2.getSemantics() == &APFloat::IEEEhalf || in isValueValidForType() 2613 return APFloat(APFloat::IEEEhalf, APInt(16, EltVal)); in getElementAsAPFloat()
|
D | ConstantFold.cpp | 591 Val.convert(DestTy->isHalfTy() ? APFloat::IEEEhalf : in ConstantFoldCastInstruction()
|
D | AsmWriter.cpp | 1212 } else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEhalf) { in WriteConstantInternal()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | APFloat.h | 129 static const fltSemantics IEEEhalf;
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Type.h | 169 case HalfTyID: return APFloat::IEEEhalf(); in getFltSemantics()
|
/external/llvm/include/llvm/IR/ |
D | Type.h | 167 case HalfTyID: return APFloat::IEEEhalf; in getFltSemantics()
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 133 static const fltSemantics IEEEhalf; variable
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 61 const fltSemantics APFloat::IEEEhalf = { 15, -14, 11, 16 }; member in llvm::APFloat 3074 assert(semantics == (const llvm::fltSemantics*)&IEEEhalf); in convertHalfAPFloatToAPInt() 3107 if (semantics == (const llvm::fltSemantics*)&IEEEhalf) in bitcastToAPInt() 3326 initialize(&APFloat::IEEEhalf); in initFromHalfAPInt() 3358 if (Sem == &IEEEhalf) in initFromAPInt() 3379 return APFloat(IEEEhalf, APInt::getAllOnesValue(BitWidth)); in getAllOnesValue()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APFloat.cpp | 53 const fltSemantics APFloat::IEEEhalf = { 15, -14, 11, true }; member in llvm::APFloat 2899 assert(semantics == (const llvm::fltSemantics*)&IEEEhalf); in convertHalfAPFloatToAPInt() 2932 if (semantics == (const llvm::fltSemantics*)&IEEEhalf) in bitcastToAPInt() 3175 initialize(&APFloat::IEEEhalf); in initFromHalfAPInt() 3591 if (semantics != &IEEEhalf && semantics != &IEEEsingle && in getExactInverse()
|
/external/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 1367 APF.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &unused); in GetConstantFoldFPValue() 1475 Val.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &lost); in ConstantFoldScalarCall() 1650 APFloat Val(APFloat::IEEEhalf, Op->getValue()); in ConstantFoldScalarCall()
|
/external/clang/lib/AST/ |
D | Expr.cpp | 741 setRawSemantics(IEEEhalf); in FloatingLiteral() 758 case IEEEhalf: in getSemantics() 759 return llvm::APFloat::IEEEhalf; in getSemantics() 775 if (&Sem == &llvm::APFloat::IEEEhalf) in setSemantics() 776 FloatingLiteralBits.Semantics = IEEEhalf; in setSemantics()
|
/external/clang/lib/CodeGen/ |
D | CodeGenTypes.cpp | 289 if (&format == &llvm::APFloat::IEEEhalf) { in getTypeForFormat()
|
D | CGExprConstant.cpp | 1357 if (&Init.getSemantics() == &llvm::APFloat::IEEEhalf && in EmitConstantValue()
|
/external/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 897 APFloatVal = APFloat(APFloat::IEEEhalf, in Lex0x()
|
D | LLParser.cpp | 4425 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, in ConvertValIDToValue()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APFloat.h | 139 static const fltSemantics &IEEEhalf();
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ConstantFolding.cpp | 1182 Val.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &lost); in ConstantFoldCall()
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 1200 case MVT::f16: return APFloat::IEEEhalf;
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 145 IEEEhalf, in LLVM_ALIGNAS() enumerator
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 1241 if (Value *V = fitsInFPType(CFP, APFloat::IEEEhalf)) in lookThroughFPExtensions()
|
D | InstCombineCompares.cpp | 4604 Sem = &APFloat::IEEEhalf; in visitFCmpInst()
|
/external/llvm/unittests/ADT/ |
D | APFloatTest.cpp | 1404 { &APFloat::IEEEhalf, false, {0, 0}, 1}, in TEST() 1405 { &APFloat::IEEEhalf, true, {0x8000ULL, 0}, 1}, in TEST()
|
/external/spirv-llvm/lib/SPIRV/ |
D | SPIRVReader.cpp | 1343 FS = &APFloat::IEEEhalf; in transValueWithoutDecoration()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 2936 V = ConstantFP::get(Context, APFloat(APFloat::IEEEhalf, in parseConstants()
|