Searched refs:Malloc (Results 1 - 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/core/platform/
H A Dmem.h32 void* Malloc(size_t size);
/external/ltp/tools/pounder21/src/memxfer5b/
H A Dmemxfer5b.c36 void *Malloc(size_t sz);
53 int fflag = 0; // if 0, then just Malloc once; else malloc/free each time
142 p1 = (char *)Malloc(size);
143 p2 = (char *)Malloc(size);
185 p1 = (char *)Malloc(size);
186 p2 = (char *)Malloc(size);
307 void *Malloc(size_t sz) function
/external/tensorflow/tensorflow/core/platform/posix/
H A Dport.cc86 if (minimum_alignment < required_alignment) return Malloc(size);
102 void* Malloc(size_t size) { function in namespace:tensorflow::port
/external/tensorflow/tensorflow/core/platform/windows/
H A Dport.cc66 if (minimum_alignment < required_alignment) return Malloc(size);
86 void* Malloc(size_t size) { function in namespace:tensorflow::port
/external/tensorflow/tensorflow/core/kernels/
H A Dconv_ops.h59 data = static_cast<T*>(port::Malloc(size * sizeof(T)));
/external/tensorflow/tensorflow/contrib/mpi/
H A Dmpi_server_lib.cc100 alloc_fns.malloc_fn = port::Malloc;
/external/tensorflow/tensorflow/core/framework/
H A Dload_library.cc95 char* str_buf = reinterpret_cast<char*>(port::Malloc(str.length()));
H A Dtracking_allocator_test.cc31 void* ptr = port::Malloc(num_bytes);
/external/tensorflow/tensorflow/contrib/gdr/
H A Dgdr_server_lib.cc119 alloc_fns.malloc_fn = port::Malloc;
/external/tensorflow/tensorflow/contrib/verbs/
H A Dverbs_server_lib.cc158 alloc_fns.malloc_fn = port::Malloc;
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp811 auto *Malloc = dyn_cast<CallInst>(Memset->getArgOperand(0));
812 if (!Malloc || !Malloc->hasOneUse())
816 Function *InnerCallee = Malloc->getCalledFunction();
823 if (Memset->getArgOperand(2) != Malloc->getArgOperand(0))
828 B.SetInsertPoint(Malloc->getParent(), ++Malloc->getIterator());
829 const DataLayout &DL = Malloc->getModule()->getDataLayout();
832 Malloc->getArgOperand(0), Malloc
[all...]
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
H A Dgrpc_server_lib.cc421 alloc_fns.malloc_fn = port::Malloc;
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp1549 // If this is a fixed size array, transform the Malloc to be an alloc of
1556 Instruction *Malloc = CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, local
1559 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1562 CI = dyn_cast<BitCastInst>(Malloc) ?
1563 extractMallocCallFromBitCast(Malloc) : cast<CallInst>(Malloc);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1486 // If this is a fixed size array, transform the Malloc to be an alloc of
1495 Instruction *Malloc = local
1498 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI);
1501 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1504 CI = cast<CallInst>(Malloc);
/external/tensorflow/tensorflow/core/platform/cloud/
H A Dcurl_http_request_test.cc212 port::Malloc(sizeof(char) * temp_str.size() + 1));
/external/llvm/lib/IR/
H A DCore.cpp2695 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), local
2698 return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
2706 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), local
2709 return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DCore.cpp1986 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), local
1989 return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
1997 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), local
2000 return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
/external/tensorflow/tensorflow/core/lib/gtl/
H A Dinlined_vector.h438 T* dst = static_cast<T*>(port::Malloc(target * sizeof(T)));
/external/tensorflow/tensorflow/c/
H A Dc_api.cc313 void* copy = tensorflow::port::Malloc(proto_len);
625 void* buf = tensorflow::port::Malloc(proto_size);
/external/protobuf/php/ext/google/protobuf/
H A Dupb.h5145 * be called before any calls to Malloc()/Realloc()/AddCleanup() below.
5186 void* Malloc(size_t size);
5333 inline void *Environment::Malloc(size_t size) { function in class:upb::HandlerAttributes::upb::BufferHandle::upb::Handlers::upb::BytesHandler::upb::Environment
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc324 TEST(MemorySanitizer, Malloc) {

Completed in 1737 milliseconds