/external/ltp/tools/pounder21/src/memxfer5b/ |
D | memxfer5b.c | 36 void *Malloc(size_t sz); 142 p1 = (char *)Malloc(size); in main() 143 p2 = (char *)Malloc(size); in main() 185 p1 = (char *)Malloc(size); in main() 186 p2 = (char *)Malloc(size); in main() 307 void *Malloc(size_t sz) in Malloc() function
|
/external/clang/test/Analysis/ |
D | NewDelete-intersections.mm | 12 // Check for intersections with unix.Malloc and unix.MallocWithAnnotations 16 //----- malloc()/free() are subjects of unix.Malloc and unix.MallocWithAnnotations
|
D | exceptions.mm | 1 …xceptions -fobjc-exceptions -fcxx-exceptions -analyzer-checker=core,unix.Malloc,debug.ExprInspecti…
|
D | malloc.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc -analyzer-store=region -verify -Wno-…
|
D | objc-boxing.m | 1 // RUN: %clang_cc1 -Wno-objc-literal-conversion -analyze -analyzer-checker=core,unix.Malloc,osx.coc…
|
D | MismatchedDeallocator-checker-test.mm | 131 // Check for intersection with unix.Malloc bounded with 173 // malloc()/free() are subjects of unix.Malloc and unix.MallocWithAnnotations
|
D | uninit-vals.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,debug.ExprInspection -verify %s
|
D | malloc.mm | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc -analyzer-store=region -verify -fblo…
|
D | edges-new.mm | 18482 // CHECK-NEXT: <key>check_name</key><string>unix.Malloc</string>
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyLibCalls.cpp | 811 auto *Malloc = dyn_cast<CallInst>(Memset->getArgOperand(0)); in foldMallocMemset() local 812 if (!Malloc || !Malloc->hasOneUse()) in foldMallocMemset() 816 Function *InnerCallee = Malloc->getCalledFunction(); in foldMallocMemset() 823 if (Memset->getArgOperand(2) != Malloc->getArgOperand(0)) in foldMallocMemset() 828 B.SetInsertPoint(Malloc->getParent(), ++Malloc->getIterator()); in foldMallocMemset() 829 const DataLayout &DL = Malloc->getModule()->getDataLayout(); in foldMallocMemset() 832 Malloc->getArgOperand(0), Malloc->getAttributes(), in foldMallocMemset() 837 Malloc->replaceAllUsesWith(Calloc); in foldMallocMemset() 838 Malloc->eraseFromParent(); in foldMallocMemset()
|
/external/bison/tests/ |
D | torture.at | 509 ## Exploding the Stack Size with Malloc. ## 512 AT_SETUP([Exploding the Stack Size with Malloc])
|
/external/valgrind/docs/internals/ |
D | BIG_APP_NOTES.txt | 53 nsRecyclingAllocator::Malloc(PRSize bytes, PRBool zeroit)
|
/external/boringssl/src/ssl/test/ |
D | PORTING.md | 89 ### Malloc Tests
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1556 Instruction *Malloc = CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, in TryToOptimizeStoreOfMallocToGlobal() local 1559 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI); in TryToOptimizeStoreOfMallocToGlobal() 1562 CI = dyn_cast<BitCastInst>(Malloc) ? in TryToOptimizeStoreOfMallocToGlobal() 1563 extractMallocCallFromBitCast(Malloc) : cast<CallInst>(Malloc); in TryToOptimizeStoreOfMallocToGlobal()
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1495 Instruction *Malloc = in tryToOptimizeStoreOfMallocToGlobal() local 1498 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI); in tryToOptimizeStoreOfMallocToGlobal() 1501 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc)) in tryToOptimizeStoreOfMallocToGlobal() 1504 CI = cast<CallInst>(Malloc); in tryToOptimizeStoreOfMallocToGlobal()
|
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/ |
D | 2003-06-25-Reoptimizer1.txt | 107 away that a single pc-relative branch would not work.) Malloc() or
|
/external/llvm/docs/HistoricalNotes/ |
D | 2003-06-25-Reoptimizer1.txt | 107 away that a single pc-relative branch would not work.) Malloc() or
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Core.cpp | 1986 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), in LLVMBuildMalloc() local 1989 return wrap(unwrap(B)->Insert(Malloc, Twine(Name))); in LLVMBuildMalloc() 1997 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), in LLVMBuildArrayMalloc() local 2000 return wrap(unwrap(B)->Insert(Malloc, Twine(Name))); in LLVMBuildArrayMalloc()
|
/external/llvm/lib/IR/ |
D | Core.cpp | 2695 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), in LLVMBuildMalloc() local 2698 return wrap(unwrap(B)->Insert(Malloc, Twine(Name))); in LLVMBuildMalloc() 2706 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), in LLVMBuildArrayMalloc() local 2709 return wrap(unwrap(B)->Insert(Malloc, Twine(Name))); in LLVMBuildArrayMalloc()
|
/external/clang/include/clang/StaticAnalyzer/Checkers/ |
D | Checkers.td | 369 def MallocChecker: Checker<"Malloc">,
|
/external/protobuf/php/ext/google/protobuf/ |
D | upb.h | 5186 void* Malloc(size_t size); 5333 inline void *Environment::Malloc(size_t size) {
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 324 TEST(MemorySanitizer, Malloc) { in TEST() argument
|
/external/bison/ |
D | ChangeLog-2012 | 4359 (Exploding the Stack Size with Malloc): Update. 4639 (Exploding the Stack Size with Malloc): Update declaration. 5540 (Exploding the Stack Size with Malloc): Likewise. 5996 (Exploding the Stack Size with Malloc): Likewise. 10569 (Exploding the Stack Size with Malloc): 20562 * tests/torture.at (Exploding the Stack Size with Malloc): 20983 (Exploding the Stack Size with Malloc): New.
|