/llvm-project/mlir/test/Integration/Dialect/Vector/CPU/ |
H A D | realloc.mlir | 28 // Realloc with static sizes. 42 // Realloc with dynamic sizes.
|
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_allocator_dlsym.h | 56 static void *Realloc(void *ptr, uptr new_size) { in Realloc() function 75 return Realloc(ptr, count * size);
|
H A D | sanitizer_common.h | 545 Realloc(new_capacity); in pop_back() 570 Realloc(new_size); in clear() 603 NOINLINE void Realloc(uptr new_capacity) { in Realloc() 593 NOINLINE void Realloc(uptr new_capacity) { Realloc() function
|
/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_malloc_linux.cpp | 71 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
|
/llvm-project/llvm/lib/Analysis/ |
H A D | MemoryBuiltins.cpp | 289 checkFnAllocKind(V, AllocFnKind::Alloc | AllocFnKind::Realloc); in checkFnAllocKind() 295 checkFnAllocKind(V, AllocFnKind::Alloc | AllocFnKind::Realloc); 321 return checkFnAllocKind(F, AllocFnKind::Realloc); in isMallocOrCallocLikeFn() 325 if (checkFnAllocKind(CB, AllocFnKind::Realloc)) in isAllocLikeFn() 517 AllocFnKind::Realloc)) { in getAllocationFamily()
|
/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_allocation_functions.cpp | 130 return DlsymAlloc::Realloc(ptr, size);
|
/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_malloc_linux.cpp | 80 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
|
/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_interceptors.cpp | 57 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
|
/llvm-project/llvm/unittests/ADT/ |
H A D | SmallStringTest.cpp | 194 TEST_F(SmallStringTest, Realloc) { in TEST_F() argument
|
/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_interceptors.cpp | 97 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
|
/llvm-project/compiler-rt/lib/scudo/standalone/tests/ |
H A D | wrappers_c_test.cpp | 299 TEST_F(ScudoWrappersCDeathTest, Realloc) { in TEST_F() argument
|
/llvm-project/llvm/include/llvm/IR/ |
H A D | Attributes.h | 52 Realloc = 1 << 1, // Allocator function resizes the `allocptr` argument enumerator
|
/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_interceptors.cpp | 1004 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
|
/llvm-project/llvm/lib/IR/ |
H A D | Attributes.cpp | 603 if ((Kind & AllocFnKind::Realloc) != AllocFnKind::Unknown) in getAsString()
|
H A D | Verifier.cpp | 2324 K & (AllocFnKind::Alloc | AllocFnKind::Realloc | AllocFnKind::Free); in verifyFunctionAttrs() 2326 {AllocFnKind::Alloc, AllocFnKind::Realloc, AllocFnKind::Free}, in verifyFunctionAttrs()
|
/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | BuildLibCalls.cpp | 570 Changed |= setAllocKind(F, AllocFnKind::Realloc); in inferNonMandatoryLibFuncAttrs() 583 Changed |= setAllocKind(F, AllocFnKind::Realloc); in inferNonMandatoryLibFuncAttrs()
|
/llvm-project/compiler-rt/lib/msan/tests/ |
H A D | msan_test.cpp | 349 TEST(MemorySanitizer, Realloc) { in TEST() argument
|
/llvm-project/clang/include/clang/Basic/ |
H A D | Builtins.td | 2742 def Realloc : LibBuiltin<"stdlib.h"> {
|
/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 2472 Kind |= AllocFnKind::Realloc; in keywordToLoc()
|