Searched refs:FreeFunc (Results 1 – 4 of 4) sorted by relevance
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/ |
D | result_of.pass.cpp | 21 typedef short (*FreeFunc)(long); typedef 22 operator FreeFunc() const;
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Instructions.cpp | 476 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL); in createFree() local 482 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore); in createFree() 486 Result = CallInst::Create(FreeFunc, PtrCast, ""); in createFree() 489 if (Function *F = dyn_cast<Function>(FreeFunc)) in createFree()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Instructions.cpp | 548 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy); in createFree() local 554 Result = CallInst::Create(FreeFunc, PtrCast, Bundles, "", InsertBefore); in createFree() 558 Result = CallInst::Create(FreeFunc, PtrCast, Bundles, ""); in createFree() 561 if (Function *F = dyn_cast<Function>(FreeFunc)) in createFree()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 586 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, nullptr); in createFree() local 592 Result = CallInst::Create(FreeFunc, PtrCast, Bundles, "", InsertBefore); in createFree() 596 Result = CallInst::Create(FreeFunc, PtrCast, Bundles, ""); in createFree() 599 if (Function *F = dyn_cast<Function>(FreeFunc)) in createFree()
|