| /src/bin/csh/ |
| alloc.c | 63 Realloc(void *p, size_t n) 67 if ((ptr = realloc(p, n)) == NULL) {
|
| csh.h | 88 #define xrealloc(p, i) Realloc(p, i)
|
| extern.h | 316 void *Realloc(void *, size_t);
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_allocator_dlsym.h | 56 static void *Realloc(void *ptr, uptr new_size) {
|
| sanitizer_common.h | 533 Realloc(new_capacity); 558 Realloc(new_size); 591 NOINLINE void Realloc(uptr new_capacity) {
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_allocator_dlsym.h | 56 static void *Realloc(void *ptr, uptr new_size) {
|
| sanitizer_common.h | 507 Realloc(new_capacity); 532 Realloc(new_size); 565 void Realloc(uptr new_capacity) {
|
| /src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| hwasan_allocation_functions.cpp | 134 return DlsymAlloc::Realloc(ptr, size); 179 INTERCEPTOR_ALIAS(void *, realloc, void *ptr, SIZE_T size);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_allocation_functions.cpp | 123 return DlsymAlloc::Realloc(ptr, size); 161 INTERCEPTOR_ALIAS(void *, realloc, void *ptr, SIZE_T size);
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_malloc_linux.cpp | 12 // We simply define functions like malloc, free, realloc, etc. 81 INTERCEPTOR(void*, realloc, void *ptr, uptr size) { 83 return DlsymAlloc::Realloc(ptr, size); 173 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugK 187 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugL 193 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)}; 198 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_malloc_linux.cpp | 12 // We simply define functions like malloc, free, realloc, etc. 81 INTERCEPTOR(void*, realloc, void *ptr, uptr size) { 83 return DlsymAlloc::Realloc(ptr, size); 173 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugK 187 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugL 193 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)}; 198 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_common.h | 453 Realloc(new_capacity); 478 Realloc(new_size); 511 void Realloc(uptr new_capacity) {
|
| /src/external/gpl3/gcc/dist/libsanitizer/lsan/ |
| lsan_interceptors.cpp | 94 INTERCEPTOR(void *, realloc, void *ptr, uptr size) { 96 return DlsymAlloc::Realloc(ptr, size); 556 INTERCEPT_FUNCTION(realloc);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/ |
| lsan_interceptors.cpp | 94 INTERCEPTOR(void *, realloc, void *ptr, uptr size) { 96 return DlsymAlloc::Realloc(ptr, size); 522 INTERCEPT_FUNCTION(realloc);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/ |
| objidl.d | 607 void* Realloc(void*, SIZE_T);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/ |
| msan_test.cc | 346 TEST(MemorySanitizer, Realloc) { 347 S4 *x = (int*)Ident(realloc(0, sizeof(S4))); 350 x = (int*)Ident(realloc(x, 2 * sizeof(S4))); 353 x = (int*)Ident(realloc(x, 3 * sizeof(S4))); 357 x[2] = 1; // Init this here. Check that after realloc it is poisoned again. 358 x = (int*)Ident(realloc(x, 2 * sizeof(S4))); 361 x = (int*)Ident(realloc(x, 3 * sizeof(S4)));
|