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.cc169 *memptr = MsanReallocate(&stack, nullptr, size, alignment, false); in INTERCEPTOR()
179 void *ptr = MsanReallocate(&stack, nullptr, size, boundary, false); in INTERCEPTOR()
190 void *ptr = MsanReallocate(&stack, nullptr, size, boundary, false); in INTERCEPTOR()
197 void *ptr = MsanReallocate(&stack, nullptr, size, boundary, false); in INTERCEPTOR()
204 void *ptr = MsanReallocate(&stack, nullptr, size, GetPageSizeCached(), false); in INTERCEPTOR()
217 void *ptr = MsanReallocate(&stack, nullptr, size, PageSize, false); in INTERCEPTOR()
998 return MsanReallocate(&stack, ptr, size, sizeof(u64), false); in INTERCEPTOR()
1003 return MsanReallocate(&stack, nullptr, size, sizeof(u64), false); in INTERCEPTOR()
Dmsan.h232 void *MsanReallocate(StackTrace *stack, void *oldp, uptr size,