/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | ValueTypes.cpp | 210 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT() 240 case MVT::v1i16: return VectorType::get(Type::getInt16Ty(Context), 1); in getTypeForEVT() 241 case MVT::v2i16: return VectorType::get(Type::getInt16Ty(Context), 2); in getTypeForEVT() 242 case MVT::v4i16: return VectorType::get(Type::getInt16Ty(Context), 4); in getTypeForEVT() 243 case MVT::v8i16: return VectorType::get(Type::getInt16Ty(Context), 8); in getTypeForEVT() 244 case MVT::v16i16: return VectorType::get(Type::getInt16Ty(Context), 16); in getTypeForEVT() 245 case MVT::v32i16: return VectorType::get(Type::getInt16Ty(Context), 32); in getTypeForEVT() 246 case MVT::v64i16: return VectorType::get(Type::getInt16Ty(Context), 64); in getTypeForEVT() 247 case MVT::v128i16: return VectorType::get(Type::getInt16Ty(Context), 128); in getTypeForEVT()
|
/external/llvm/lib/IR/ |
D | ValueTypes.cpp | 212 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT() 240 case MVT::v1i16: return VectorType::get(Type::getInt16Ty(Context), 1); in getTypeForEVT() 241 case MVT::v2i16: return VectorType::get(Type::getInt16Ty(Context), 2); in getTypeForEVT() 242 case MVT::v4i16: return VectorType::get(Type::getInt16Ty(Context), 4); in getTypeForEVT() 243 case MVT::v8i16: return VectorType::get(Type::getInt16Ty(Context), 8); in getTypeForEVT() 244 case MVT::v16i16: return VectorType::get(Type::getInt16Ty(Context), 16); in getTypeForEVT() 245 case MVT::v32i16: return VectorType::get(Type::getInt16Ty(Context), 32); in getTypeForEVT() 246 case MVT::v64i16: return VectorType::get(Type::getInt16Ty(Context), 64); in getTypeForEVT() 247 case MVT::v128i16: return VectorType::get(Type::getInt16Ty(Context), 128); in getTypeForEVT()
|
D | Type.cpp | 168 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } in getInt16Ty() function in Type 218 return getInt16Ty(C)->getPointerTo(AS); in getInt16PtrTy() 242 case 16: return cast<IntegerType>(Type::getInt16Ty(C)); in get()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | ValueTypes.cpp | 157 case MVT::i16: return Type::getInt16Ty(Context); in getTypeForEVT() 172 case MVT::v2i16: return VectorType::get(Type::getInt16Ty(Context), 2); in getTypeForEVT() 173 case MVT::v4i16: return VectorType::get(Type::getInt16Ty(Context), 4); in getTypeForEVT() 174 case MVT::v8i16: return VectorType::get(Type::getInt16Ty(Context), 8); in getTypeForEVT() 175 case MVT::v16i16: return VectorType::get(Type::getInt16Ty(Context), 16); in getTypeForEVT()
|
D | Type.cpp | 212 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } in getInt16Ty() function in Type 257 return getInt16Ty(C)->getPointerTo(AS); in getInt16PtrTy() 281 case 16: return cast<IntegerType>(Type::getInt16Ty(C)); in get()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/FuzzMutate/ |
D | StrategiesTest.cpp | 31 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createInjectorMutator() 44 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createDeleterMutator()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 198 Type *Int16Ty = Type::getInt16Ty(Context); in TEST() 404 Type *I16Ty = Type::getInt16Ty(Context); in TEST() 423 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST() 446 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST()
|
D | TypeBuilderTest.cpp | 39 EXPECT_EQ(Type::getInt16Ty(Context), in TEST() 41 EXPECT_EQ(Type::getInt16Ty(Context), in TEST()
|
/external/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 197 Type *Int16Ty = Type::getInt16Ty(Context); in TEST() 403 Type *I16Ty = Type::getInt16Ty(Context); in TEST() 422 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST() 445 for (Type *T : {Type::getInt8Ty(Context), Type::getInt16Ty(Context), in TEST()
|
D | TypeBuilderTest.cpp | 39 EXPECT_EQ(Type::getInt16Ty(Context), in TEST() 41 EXPECT_EQ(Type::getInt16Ty(Context), in TEST()
|
D | InstructionsTest.cpp | 175 Type *Int16Ty = Type::getInt16Ty(C); in TEST() 415 Type* Int16Ty = Type::getInt16Ty(C); in TEST()
|
/external/llvm/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 298 default: RetTy = Type::getInt16Ty(header->getContext()); break; in constructFunction() 502 SwitchInst::Create(Constant::getNullValue(Type::getInt16Ty(Context)), in emitCallAndSwitchStatement() 536 brVal = ConstantInt::get(Type::getInt16Ty(Context), SuccNum); in emitCallAndSwitchStatement() 543 TheSwitch->addCase(ConstantInt::get(Type::getInt16Ty(Context), in emitCallAndSwitchStatement()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | builder.cpp | 60 mInt16Ty = Type::getInt16Ty(pJitMgr->mContext); in Builder()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 258 default: RetTy = Type::getInt16Ty(header->getContext()); break; in constructFunction() 468 SwitchInst::Create(Constant::getNullValue(Type::getInt16Ty(Context)), in emitCallAndSwitchStatement() 503 brVal = ConstantInt::get(Type::getInt16Ty(Context), SuccNum); in emitCallAndSwitchStatement() 510 TheSwitch->addCase(ConstantInt::get(Type::getInt16Ty(Context), in emitCallAndSwitchStatement()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Type.cpp | 175 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } in getInt16Ty() function in Type 225 return getInt16Ty(C)->getPointerTo(AS); in getInt16PtrTy() 248 case 16: return cast<IntegerType>(Type::getInt16Ty(C)); in get()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-isel-fuzzer/ |
D | llvm-isel-fuzzer.cpp | 55 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createISelMutator()
|
/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | TypeBuilderTest.cpp | 38 …EXPECT_EQ(Type::getInt16Ty(getGlobalContext()), (TypeBuilder<int16_t, false>::get(getGlobalContext… in TEST() 39 …EXPECT_EQ(Type::getInt16Ty(getGlobalContext()), (TypeBuilder<uint16_t, false>::get(getGlobalContex… in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 635 default: RetTy = Type::getInt16Ty(header->getContext()); break; in constructFunction() 955 SwitchInst::Create(Constant::getNullValue(Type::getInt16Ty(Context)), in emitCallAndSwitchStatement() 989 brVal = ConstantInt::get(Type::getInt16Ty(Context), SuccNum); in emitCallAndSwitchStatement() 996 TheSwitch->addCase(ConstantInt::get(Type::getInt16Ty(Context), in emitCallAndSwitchStatement()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-opt-fuzzer/ |
D | llvm-opt-fuzzer.cpp | 40 Type::getInt1Ty, Type::getInt8Ty, Type::getInt16Ty, Type::getInt32Ty, in createOptMutator()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Type.h | 319 static IntegerType *getInt16Ty(LLVMContext &C);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/ |
D | SanitizerCoverage.cpp | 309 Int16Ty = IRB.getInt16Ty(); in runOnModule() 318 M.getOrInsertFunction(SanCovTraceCmp2, VoidTy, IRB.getInt16Ty(), in runOnModule() 319 IRB.getInt16Ty())); in runOnModule()
|
/external/llvm/include/llvm/IR/ |
D | Type.h | 380 static IntegerType *getInt16Ty(LLVMContext &C);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Type.h | 391 static IntegerType *getInt16Ty(LLVMContext &C);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Type.h | 409 static IntegerType *getInt16Ty(LLVMContext &C);
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | IRBuilder.h | 202 return ConstantInt::get(getInt16Ty(), C); in getInt16() 235 IntegerType *getInt16Ty() { in getInt16Ty() function 236 return Type::getInt16Ty(Context); in getInt16Ty()
|