Home
last modified time | relevance | path

Searched refs:memcpy_size (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_dlsym.h65 uptr memcpy_size = Min(new_size, size); in Realloc() local
68 internal_memcpy(new_ptr, ptr, memcpy_size); in Realloc()
H A Dsanitizer_allocator_combined.h107 uptr memcpy_size = Min(new_size, old_size); in Reallocate() local
110 internal_memcpy(new_p, p, memcpy_size); in Reallocate()
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_allocator.cpp162 uptr memcpy_size = Min(new_size, old_size); in DFsanReallocate() local
165 dfsan_copy_memory(new_p, old_p, memcpy_size); in DFsanReallocate()
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp284 uptr memcpy_size = Min(new_size, old_size); in MsanReallocate() local
287 CopyMemory(new_p, old_p, memcpy_size, stack); in MsanReallocate()
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp497 uptr memcpy_size = Min(new_size, m->UsedSize()); in Reallocate() local
498 REAL(memcpy)(new_ptr, old_ptr, memcpy_size); in Reallocate()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp764 uptr memcpy_size = Min(new_size, m->UsedSize()); in Reallocate() local
767 REAL(memcpy)(new_ptr, old_ptr, memcpy_size); in Reallocate()