Home
last modified time | relevance | path

Searched refs:Realloc (Results 1 – 25 of 32) sorted by relevance

12

/external/pigweed/pw_allocator/public/pw_allocator/
Dfreelist_heap.h41 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/
Darena_test.cc141 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()
Darena.h234 return Realloc(memory, old_size, new_size); in SlowRealloc()
264 char* Realloc(char* original, size_t oldsize, size_t newsize);
Darena.cc487 char* UnsafeArena::Realloc(char* original, size_t oldsize, size_t newsize) { in AllocNewBlock() function in libtextclassifier3::UnsafeArena
/external/pigweed/pw_allocator/
Dfreelist_heap_test.cc154 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()
Dfreelist_heap.cc116 void* FreeListHeap::Realloc(void* ptr, size_t size) { in Realloc() function in pw::allocator::FreeListHeap
/external/pigweed/pw_malloc_freelist/
Dfreelist_malloc.cc54 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/
Dmem.h33 void* Realloc(void* ptr, size_t size);
/external/libgav1/libgav1/src/
Dbuffer_pool.cc44 bool RefCountedBuffer::Realloc(int bitdepth, bool is_monochrome, int width, in Realloc() function in libgav1::RefCountedBuffer
53 if (!yuv_buffer_.Realloc( in Realloc()
Dyuv_buffer.h87 bool Realloc(int bitdepth, bool is_monochrome, int width, int height,
Dyuv_buffer.cc36 bool YuvBuffer::Realloc(int bitdepth, bool is_monochrome, int width, int height, in Realloc() function in libgav1::YuvBuffer
Ddecoder_impl.cc1224 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()
Dbuffer_pool.h77 bool Realloc(int bitdepth, bool is_monochrome, int width, int height,
/external/webrtc/api/video/
Dencoded_image.cc54 void EncodedImageBuffer::Realloc(size_t size) { in Realloc() function in webrtc::EncodedImageBuffer
Dencoded_image.h59 void Realloc(size_t t);
/external/tensorflow/tensorflow/core/platform/windows/
Dport.cc121 void* Realloc(void* ptr, size_t size) { return realloc(ptr, size); } in Realloc() function
/external/webrtc/modules/video_coding/
Dframe_buffer.cc122 encoded_image_buffer_->Realloc(newSize); in InsertPacket()
/external/webrtc/modules/video_coding/utility/
Divf_file_reader.cc132 payload->Realloc(payload->size() + current_layer_size); in NextFrame()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h489 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/
DSmallStringTest.cpp162 TEST_F(SmallStringTest, Realloc) { in TEST_F() argument
/external/tensorflow/tensorflow/core/platform/default/
Dport.cc254 void* Realloc(void* ptr, size_t size) { return realloc(ptr, size); } in Realloc() function
/external/llvm-project/llvm/unittests/ADT/
DSmallStringTest.cpp194 TEST_F(SmallStringTest, Realloc) { in TEST_F() argument
/external/libchrome/base/process/
Dmemory_unittest.cc184 TEST_F(OutOfMemoryDeathTest, Realloc) { in TEST_F() argument
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/
Dwrappers_c_test.cpp133 TEST(ScudoWrappersCTest, Realloc) { in TEST() argument
/external/pdfium/third_party/base/allocator/partition_allocator/
Dpartition_alloc.h163 NOINLINE void* Realloc(void* ptr, size_t new_size, const char* type_name);

12