Searched refs:RealTy (Results 1 – 3 of 3) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
D | Core.h | 1912 LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N); 1920 LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text); 1925 LLVMValueRef LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy, const char *Text,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 3854 Type *RealTy = A->getType()->getPointerElementType(); in visitCallSite() local 3855 uint64_t ArgSize = DL.getTypeAllocSize(RealTy); in visitCallSite() 3857 RealTy, IRB, OverflowOffset, alignTo(ArgSize, 8)); in visitCallSite() 3860 OriginBase = getOriginPtrForVAArgument(RealTy, IRB, OverflowOffset); in visitCallSite() 4473 Type *RealTy = A->getType()->getPointerElementType(); in visitCallSite() local 4474 uint64_t ArgSize = DL.getTypeAllocSize(RealTy); in visitCallSite() 4481 RealTy, IRB, VAArgOffset - VAArgBase, ArgSize); in visitCallSite()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Core.cpp | 1324 LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N) { in LLVMConstReal() argument 1325 return wrap(ConstantFP::get(unwrap(RealTy), N)); in LLVMConstReal() 1328 LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text) { in LLVMConstRealOfString() argument 1329 return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Text))); in LLVMConstRealOfString() 1332 LLVMValueRef LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy, const char Str[], in LLVMConstRealOfStringAndSize() argument 1334 return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Str, SLen))); in LLVMConstRealOfStringAndSize()
|