HomeSort by relevance Sort by last modified time
    Searched refs:Realloc (Results 1 - 25 of 31) sorted by null

1 2

  /external/tensorflow/tensorflow/core/platform/
mem.h 33 void* Realloc(void* ptr, size_t size);
  /art/runtime/
linear_alloc.cc 26 void* LinearAlloc::Realloc(Thread* self, void* ptr, size_t old_size, size_t new_size) {
28 return allocator_.Realloc(ptr, old_size, new_size);
linear_alloc.h 34 // Realloc never frees the input pointer, it is the caller's job to do this if necessary.
35 void* Realloc(Thread* self, void* ptr, size_t old_size, size_t new_size) REQUIRES(!lock_);
class_linker.cc     [all...]
  /art/runtime/base/
arena_allocator_test.cc 148 // Realloc does not reuse arenas when running under sanitization. So we cannot do those
163 void* realloc_allocation = allocator.Realloc(original_allocation, original_size, new_size);
176 void* realloc_allocation = allocator.Realloc(original_allocation, original_size, new_size);
189 void* realloc_allocation = allocator.Realloc(original_allocation, original_size, new_size);
202 void* realloc_allocation = allocator.Realloc(original_allocation, original_size, new_size);
219 void* realloc_allocation = allocator.Realloc(original_allocation, original_size, new_size);
236 void* realloc_allocation = allocator.Realloc(original_allocation, original_size, new_size);
252 void* realloc_allocation = allocator.Realloc(original_allocation, original_size, new_size);
269 void* realloc_allocation = allocator.Realloc(original_allocation, original_size, new_size);
286 void* realloc_allocation = allocator.Realloc(original_allocation, original_size, new_size)
    [all...]
arena_allocator.h 330 // Realloc never frees the input pointer, it is the caller's job to do this if necessary.
331 void* Realloc(void* ptr,
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
allocatorstest.cpp 31 uint8_t* q = (uint8_t*)a.Realloc(p, 100, 200);
39 uint8_t *r = (uint8_t*)a.Realloc(q, 200, 150);
46 // Realloc to zero size
47 EXPECT_TRUE(a.Realloc(a.Malloc(1), 1, 0) == 0);
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
allocators.h 28 Note that Malloc() and Realloc() are non-static but Free() is static.
46 void* Realloc(void* originalPtr, size_t originalSize, size_t newSize);
71 void* Realloc(void* originalPtr, size_t originalSize, size_t newSize) {
77 return std::realloc(originalPtr, newSize);
88 It does not free memory blocks. And Realloc() only allocate new memory.
190 void* Realloc(void* originalPtr, size_t originalSize, size_t newSize) {
211 // Realloc process: allocate and copy memory, do not free original buffer.
document.h     [all...]
  /art/compiler/utils/
assembler.cc 84 allocator_->Realloc(contents_, old_capacity, new_capacity, kArenaAllocAssembler));
  /external/tensorflow/tensorflow/contrib/mpi/
mpi_server_lib.cc 101 alloc_fns.realloc_fn = port::Realloc;
  /external/tensorflow/tensorflow/contrib/gdr/
gdr_server_lib.cc 120 alloc_fns.realloc_fn = port::Realloc;
  /external/tensorflow/tensorflow/core/platform/posix/
port.cc 110 void* Realloc(void* ptr, size_t size) {
114 return realloc(ptr, size);
  /external/tensorflow/tensorflow/core/platform/windows/
port.cc 94 void* Realloc(void* ptr, size_t size) {
98 return realloc(ptr, size);
  /external/tensorflow/tensorflow/contrib/verbs/
verbs_server_lib.cc 159 alloc_fns.realloc_fn = port::Realloc;
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
stack.h 171 stack_ = (char*)allocator_->Realloc(stack_, GetCapacity(), newCapacity);
  /external/llvm/unittests/ADT/
SmallStringTest.cpp 162 TEST_F(SmallStringTest, Realloc) {
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_server_lib.cc 422 alloc_fns.realloc_fn = port::Realloc;
  /external/v8/src/compiler/
wasm-compiler.h 384 Node** Realloc(Node** buffer, size_t old_count, size_t new_count) {
wasm-compiler.cc 448 Node** buf = Realloc(vals, count, count + 1);
457 Node** buf = Realloc(effects, count, count + 1);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
objidlbase.h 862 virtual void * STDMETHODCALLTYPE Realloc(
903 void * (STDMETHODCALLTYPE *Realloc)(
937 #define IMalloc_Realloc(This,pv,cb) (This)->lpVtbl->Realloc(This,pv,cb)
958 return This->lpVtbl->Realloc(This,pv,cb);
    [all...]
objidl.h 1077 virtual void * STDMETHODCALLTYPE Realloc(
    [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.h     [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 330 TEST(MemorySanitizer, Realloc) {
331 S4 *x = (int*)Ident(realloc(0, sizeof(S4)));
334 x = (int*)Ident(realloc(x, 2 * sizeof(S4)));
337 x = (int*)Ident(realloc(x, 3 * sizeof(S4)));
341 x[2] = 1; // Init this here. Check that after realloc it is poisoned again.
342 x = (int*)Ident(realloc(x, 2 * sizeof(S4)));
345 x = (int*)Ident(realloc(x, 3 * sizeof(S4)));
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 

Completed in 2085 milliseconds

1 2