Home
last modified time | relevance | path

Searched refs:Malloc (Results 1 – 25 of 36) sorted by relevance

12

/external/ltp/tools/pounder21/src/memxfer5b/
Dmemxfer5b.c36 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/tensorflow/tensorflow/core/platform/windows/
Dport.cc66 if (minimum_alignment < required_alignment) return Malloc(size); in AlignedMalloc()
86 void* Malloc(size_t size) { in Malloc() function
/external/tensorflow/tensorflow/core/platform/posix/
Dport.cc86 if (minimum_alignment < required_alignment) return Malloc(size); in AlignedMalloc()
102 void* Malloc(size_t size) { in Malloc() function
/external/clang/test/Analysis/
DNewDelete-intersections.mm12 // Check for intersections with unix.Malloc and unix.MallocWithAnnotations
16 //----- malloc()/free() are subjects of unix.Malloc and unix.MallocWithAnnotations
Dexceptions.mm1 …xceptions -fobjc-exceptions -fcxx-exceptions -analyzer-checker=core,unix.Malloc,debug.ExprInspecti…
Dmalloc.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc -analyzer-store=region -verify -Wno-…
Dobjc-boxing.m1 // RUN: %clang_cc1 -Wno-objc-literal-conversion -analyze -analyzer-checker=core,unix.Malloc,osx.coc…
DMismatchedDeallocator-checker-test.mm131 // Check for intersection with unix.Malloc bounded with
173 // malloc()/free() are subjects of unix.Malloc and unix.MallocWithAnnotations
Duninit-vals.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,debug.ExprInspection -verify %s
/external/tensorflow/tensorflow/core/platform/
Dmem.h32 void* Malloc(size_t size);
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp811 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/tensorflow/tensorflow/core/kernels/
Dconv_ops.h59 data = static_cast<T*>(port::Malloc(size * sizeof(T)));
/external/tensorflow/tensorflow/contrib/mpi/
Dmpi_server_lib.cc100 alloc_fns.malloc_fn = port::Malloc; in MPIServerRegistrar()
/external/tensorflow/tensorflow/core/framework/
Dload_library.cc95 char* str_buf = reinterpret_cast<char*>(port::Malloc(str.length())); in LoadLibrary()
Dtracking_allocator_test.cc31 void* ptr = port::Malloc(num_bytes); in AllocateRaw()
/external/tensorflow/tensorflow/contrib/gdr/
Dgdr_server_lib.cc119 alloc_fns.malloc_fn = port::Malloc; in GdrServerRegistrar()
/external/tensorflow/tensorflow/contrib/verbs/
Dverbs_server_lib.cc158 alloc_fns.malloc_fn = port::Malloc; in VerbsServerRegistrar()
/external/valgrind/docs/internals/
DBIG_APP_NOTES.txt53 nsRecyclingAllocator::Malloc(PRSize bytes, PRBool zeroit)
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_server_lib.cc421 alloc_fns.malloc_fn = port::Malloc; in GrpcServerRegistrar()
/external/boringssl/src/ssl/test/
DPORTING.md89 ### Malloc Tests
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DGlobalOpt.cpp1556 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/
DGlobalOpt.cpp1495 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/llvm/docs/HistoricalNotes/
D2003-06-25-Reoptimizer1.txt107 away that a single pc-relative branch would not work.) Malloc() or
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/
D2003-06-25-Reoptimizer1.txt107 away that a single pc-relative branch would not work.) Malloc() or
/external/swiftshader/third_party/LLVM/lib/VMCore/
DCore.cpp1986 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()

12