Home
last modified time | relevance | path

Searched refs:MsanReallocate (Results 1 – 4 of 4) sorted by relevance

/external/compiler-rt/lib/msan/
Dmsan_new_delete.cc32 return MsanReallocate(&stack, 0, size, sizeof(u64), false)
Dmsan_allocator.cc174 return MsanReallocate(stack, nullptr, nmemb * size, sizeof(u64), true); in MsanCalloc()
177 void *MsanReallocate(StackTrace *stack, void *old_p, uptr new_size, in MsanReallocate() function
Dmsan_interceptors.cc172 *memptr = MsanReallocate(&stack, nullptr, size, alignment, false); in INTERCEPTOR()
182 void *ptr = MsanReallocate(&stack, nullptr, size, boundary, false); in INTERCEPTOR()
193 void *ptr = MsanReallocate(&stack, nullptr, size, boundary, false); in INTERCEPTOR()
200 void *ptr = MsanReallocate(&stack, nullptr, size, boundary, false); in INTERCEPTOR()
207 void *ptr = MsanReallocate(&stack, nullptr, size, GetPageSizeCached(), false); in INTERCEPTOR()
220 void *ptr = MsanReallocate(&stack, nullptr, size, PageSize, false); in INTERCEPTOR()
926 return MsanReallocate(&stack, ptr, size, sizeof(u64), false); in INTERCEPTOR()
931 return MsanReallocate(&stack, nullptr, size, sizeof(u64), false); in INTERCEPTOR()
Dmsan.h232 void *MsanReallocate(StackTrace *stack, void *oldp, uptr size,