/external/pigweed/pw_allocator/public/pw_allocator/ |
D | freelist_heap.h | 41 void* Realloc(void* ptr, size_t size); 69 void* Realloc(void* ptr, size_t size) { return heap_.Realloc(ptr, size); } in Realloc() function
|
/external/libtextclassifier/native/utils/base/ |
D | arena_test.cc | 141 m1 = a->Realloc(m1, blksize / 2, blksize); in TestArena() 143 m1 = a->Realloc(m1, blksize, 23456); in TestArena() 265 char* s6 = arena->Realloc(s5, 10, 20); in TestArena2() 268 char* s8 = arena->Realloc(s7, 10, 5); in TestArena2() 270 char* s10 = arena->Realloc(s4, 100, 10); in TestArena2() 271 char* s11 = arena->Realloc(s4, 10, 100); in TestArena2() 273 char* s13 = arena->Realloc(s9, sizeof(sshort) - 1, 100000); // won't fit :-) in TestArena2()
|
D | arena.h | 234 return Realloc(memory, old_size, new_size); in SlowRealloc() 264 char* Realloc(char* original, size_t oldsize, size_t newsize);
|
D | arena.cc | 487 char* UnsafeArena::Realloc(char* original, size_t oldsize, size_t newsize) { in AllocNewBlock() function in libtextclassifier3::UnsafeArena
|
/external/pigweed/pw_allocator/ |
D | freelist_heap_test.cc | 154 void* ptr2 = allocator.Realloc(ptr1, kNewAllocSize); in TEST() 175 int* ptr2 = reinterpret_cast<int*>(allocator.Realloc(ptr1, kNewAllocSize)); in TEST() 194 void* ptr2 = allocator.Realloc(ptr1, kNewAllocSize); in TEST() 208 void* ptr2 = allocator.Realloc(ptr1, kNewAllocSize); in TEST() 223 void* ptr2 = allocator.Realloc(ptr1, kNewAllocSize); in TEST()
|
D | freelist_heap.cc | 116 void* FreeListHeap::Realloc(void* ptr, size_t size) { in Realloc() function in pw::allocator::FreeListHeap
|
/external/pigweed/pw_malloc_freelist/ |
D | freelist_malloc.cc | 54 return pw_freelist_heap->Realloc(ptr, size); in __wrap_realloc() 68 return pw_freelist_heap->Realloc(ptr, size); in __wrap__realloc_r()
|
/external/tensorflow/tensorflow/core/platform/ |
D | mem.h | 33 void* Realloc(void* ptr, size_t size);
|
/external/libgav1/libgav1/src/ |
D | buffer_pool.cc | 44 bool RefCountedBuffer::Realloc(int bitdepth, bool is_monochrome, int width, in Realloc() function in libgav1::RefCountedBuffer 53 if (!yuv_buffer_.Realloc( in Realloc()
|
D | yuv_buffer.h | 87 bool Realloc(int bitdepth, bool is_monochrome, int width, int height,
|
D | yuv_buffer.cc | 36 bool YuvBuffer::Realloc(int bitdepth, bool is_monochrome, int width, int height, in Realloc() function in libgav1::YuvBuffer
|
D | decoder_impl.cc | 1224 if (!current_frame->Realloc(sequence_header.color_config.bitdepth, in DecodeTiles() 1333 if (!frame_scratch_buffer->cdef_border.Realloc( in DecodeTiles() 1352 if (!frame_scratch_buffer->loop_restoration_border.Realloc( in DecodeTiles() 1395 if (!frame_scratch_buffer->superres_line_buffer.Realloc( in DecodeTiles() 1554 ->Realloc(displayable_frame->buffer()->bitdepth(), in ApplyFilmGrain()
|
D | buffer_pool.h | 77 bool Realloc(int bitdepth, bool is_monochrome, int width, int height,
|
/external/webrtc/api/video/ |
D | encoded_image.cc | 54 void EncodedImageBuffer::Realloc(size_t size) { in Realloc() function in webrtc::EncodedImageBuffer
|
D | encoded_image.h | 59 void Realloc(size_t t);
|
/external/tensorflow/tensorflow/core/platform/windows/ |
D | port.cc | 121 void* Realloc(void* ptr, size_t size) { return realloc(ptr, size); } in Realloc() function
|
/external/webrtc/modules/video_coding/ |
D | frame_buffer.cc | 122 encoded_image_buffer_->Realloc(newSize); in InsertPacket()
|
/external/webrtc/modules/video_coding/utility/ |
D | ivf_file_reader.cc | 132 payload->Realloc(payload->size() + current_layer_size); in NextFrame()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common.h | 489 Realloc(new_capacity); in push_back() 514 Realloc(new_size); in reserve() 547 void Realloc(uptr new_capacity) { in Realloc() function
|
/external/llvm/unittests/ADT/ |
D | SmallStringTest.cpp | 162 TEST_F(SmallStringTest, Realloc) { in TEST_F() argument
|
/external/tensorflow/tensorflow/core/platform/default/ |
D | port.cc | 254 void* Realloc(void* ptr, size_t size) { return realloc(ptr, size); } in Realloc() function
|
/external/llvm-project/llvm/unittests/ADT/ |
D | SmallStringTest.cpp | 194 TEST_F(SmallStringTest, Realloc) { in TEST_F() argument
|
/external/libchrome/base/process/ |
D | memory_unittest.cc | 184 TEST_F(OutOfMemoryDeathTest, Realloc) { in TEST_F() argument
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/ |
D | wrappers_c_test.cpp | 133 TEST(ScudoWrappersCTest, Realloc) { in TEST() argument
|
/external/pdfium/third_party/base/allocator/partition_allocator/ |
D | partition_alloc.h | 163 NOINLINE void* Realloc(void* ptr, size_t new_size, const char* type_name);
|