Searched refs:getHalfTy (Results 1 – 14 of 14) sorted by relevance
/external/llvm/lib/IR/ |
D | ValueTypes.cpp | 211 case MVT::f16: return Type::getHalfTy(Context); in getTypeForEVT() 257 case MVT::v2f16: return VectorType::get(Type::getHalfTy(Context), 2); in getTypeForEVT() 258 case MVT::v4f16: return VectorType::get(Type::getHalfTy(Context), 4); in getTypeForEVT() 259 case MVT::v8f16: return VectorType::get(Type::getHalfTy(Context), 8); in getTypeForEVT()
|
D | Type.cpp | 29 case HalfTyID : return getHalfTy(C); in getPrimitiveType() 220 Type *Type::getHalfTy(LLVMContext &C) { return &C.pImpl->HalfTy; } in getHalfTy() function in Type 242 return getHalfTy(C)->getPointerTo(AS); in getHalfPtrTy()
|
D | Function.cpp | 767 case IITDescriptor::Half: return Type::getHalfTy(Context); in DecodeFixedType()
|
D | Constants.cpp | 721 Ty = Type::getHalfTy(Context); in get() 2525 Type *Ty = ArrayType::get(Type::getHalfTy(Context), Elts.size()); in getFP() 2602 Type *Ty = VectorType::get(Type::getHalfTy(Context), Elts.size()); in getFP()
|
D | Core.cpp | 351 return (LLVMTypeRef) Type::getHalfTy(*unwrap(C)); in LLVMHalfTypeInContext()
|
/external/llvm/include/llvm/IR/ |
D | Type.h | 376 static Type *getHalfTy(LLVMContext &C);
|
D | IRBuilder.h | 326 Type *getHalfTy() { in getHalfTy() function 327 return Type::getHalfTy(Context); in getHalfTy()
|
/external/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 406 for (Type *T : {Type::getHalfTy(Context), Type::getFloatTy(Context), in TEST() 428 for (Type *T : {Type::getHalfTy(Context), Type::getFloatTy(Context), in TEST()
|
D | InstructionsTest.cpp | 182 Type *HalfTy = Type::getHalfTy(C); in TEST()
|
/external/clang/lib/CodeGen/ |
D | CodeGenTypes.cpp | 280 return llvm::Type::getHalfTy(VMContext); in getTypeForFormat()
|
/external/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 54 if (Arg == "half") Value = Type::getHalfTy(Context); in parse()
|
/external/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 696 TYPEKEYWORD("half", Type::getHalfTy(Context)); in LexIdentifier()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 1086 VectorType::get(Type::getHalfTy(II->getContext()), RetWidth); in visitCallInst()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 1474 ResultTy = Type::getHalfTy(Context); in parseTypeTableBody()
|