Searched refs:MsanReallocate (Results 1 – 4 of 4) sorted by relevance
/external/compiler-rt/lib/msan/ |
D | msan_new_delete.cc | 32 return MsanReallocate(&stack, 0, size, sizeof(u64), false)
|
D | msan_allocator.cc | 174 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
|
D | msan_interceptors.cc | 172 *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()
|
D | msan.h | 232 void *MsanReallocate(StackTrace *stack, void *oldp, uptr size,
|