OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MsanReallocate
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/msan/
msan_new_delete.cc
32
return
MsanReallocate
(&stack, 0, size, sizeof(u64), false)
msan_allocator.cc
174
return
MsanReallocate
(stack, nullptr, nmemb * size, sizeof(u64), true);
177
void *
MsanReallocate
(StackTrace *stack, void *old_p, uptr new_size,
msan_interceptors.cc
169
*memptr =
MsanReallocate
(&stack, nullptr, size, alignment, false);
179
void *ptr =
MsanReallocate
(&stack, nullptr, size, boundary, false);
190
void *ptr =
MsanReallocate
(&stack, nullptr, size, boundary, false);
197
void *ptr =
MsanReallocate
(&stack, nullptr, size, boundary, false);
204
void *ptr =
MsanReallocate
(&stack, nullptr, size, GetPageSizeCached(), false);
217
void *ptr =
MsanReallocate
(&stack, nullptr, size, PageSize, false);
998
return
MsanReallocate
(&stack, ptr, size, sizeof(u64), false);
1003
return
MsanReallocate
(&stack, nullptr, size, sizeof(u64), false);
[
all
...]
msan.h
232
void *
MsanReallocate
(StackTrace *stack, void *oldp, uptr size,
Completed in 156 milliseconds