Home
last modified time | relevance | path

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

/freebsd/stand/libsa/
H A Dzalloc_malloc.c177 Realloc(void *ptr, size_t size, const char *file, int line) in Realloc() function
213 if ((res = Realloc(ptr, size, file, line)) == NULL) in Reallocf()
H A Dstand.h462 void *Realloc(void *, size_t, const char *, int);
481 #define realloc(x, y) Realloc(x, y, __FILE__, __LINE__)
488 #define realloc(x, y) Realloc(x, y, NULL, 0)
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_dlsym.h56 static void *Realloc(void *ptr, uptr new_size) { in Realloc() function
H A Dsanitizer_common.h536 Realloc(new_capacity); in push_back()
561 Realloc(new_size); in reserve()
594 NOINLINE void Realloc(uptr new_capacity) { in Realloc() function
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_malloc_linux.cpp71 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocation_functions.cpp134 return DlsymAlloc::Realloc(ptr, size); in __sanitizer_realloc()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cpp81 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp301 checkFnAllocKind(V, AllocFnKind::Alloc | AllocFnKind::Realloc); in isAllocationFn()
307 checkFnAllocKind(V, AllocFnKind::Alloc | AllocFnKind::Realloc); in isAllocationFn()
333 return checkFnAllocKind(F, AllocFnKind::Realloc); in isReallocLikeFn()
337 if (checkFnAllocKind(CB, AllocFnKind::Realloc)) in getReallocatedOperand()
530 AllocFnKind::Realloc)) { in getAllocationFamily()
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cpp59 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
/freebsd/lib/libc/db/
H A Dchangelog47 Realloc bug when reading in fixed records.
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp96 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h50 Realloc = 1 << 1, // Allocator function resizes the `allocptr` argument enumerator
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp1008 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp501 if ((Kind & AllocFnKind::Realloc) != AllocFnKind::Unknown) in getAsString()
H A DVerifier.cpp2212 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free); in verifyFunctionAttrs()
2214 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free}, in verifyFunctionAttrs()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp547 Changed |= setAllocKind(F, AllocFnKind::Realloc); in inferNonMandatoryLibFuncAttrs()
/freebsd/contrib/tcsh/
H A DFixes1151 112. Realloc debug fix from John.
1712 17. Realloc bug fix (copy min of old and new size)
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp2352 Kind |= AllocFnKind::Realloc; in parseAllocKind()