Home
last modified time | relevance | path

Searched defs:nmemb (Results 1 – 22 of 22) sorted by relevance

/llvm-project/clang/test/Driver/
H A Darm-float-abi-lto.c53 size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream) { in fwrite()
/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocation_functions.cpp124 return hwasan_calloc(nmemb, size, &stack); in __sanitizer_calloc() argument
140 __sanitizer_reallocarray(void * ptr,uptr nmemb,uptr size) __sanitizer_reallocarray() argument
H A Dhwasan_allocator.cpp394 HwasanCalloc(StackTrace * stack,uptr nmemb,uptr size) HwasanCalloc() argument
454 hwasan_calloc(uptr nmemb,uptr size,StackTrace * stack) hwasan_calloc() argument
468 hwasan_reallocarray(void * ptr,uptr nmemb,uptr size,StackTrace * stack) hwasan_reallocarray() argument
[all...]
/llvm-project/libc/src/stdio/printf_core/
H A Dvfprintf_internal.h37 fwrite_unlocked(const void * ptr,size_t size,size_t nmemb,FILE * f) fwrite_unlocked() argument
/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_allocator.cpp174 DFsanCalloc(uptr nmemb,uptr size) DFsanCalloc() argument
216 dfsan_calloc(uptr nmemb,uptr size) dfsan_calloc() argument
230 dfsan_reallocarray(void * ptr,uptr nmemb,uptr size) dfsan_reallocarray() argument
[all...]
H A Ddfsan_interceptors.cpp51 return DlsymAlloc::Callocate(nmemb, size); in INTERCEPTOR() argument
36 INTERCEPTOR(void *,reallocarray,void * ptr,SIZE_T nmemb,SIZE_T size) INTERCEPTOR() argument
/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_win.cpp113 calloc(size_t nmemb,size_t size) calloc() argument
119 _calloc_base(size_t nmemb,size_t size) _calloc_base() argument
124 _calloc_dbg(size_t nmemb,size_t size,int,const char *,int) _calloc_dbg() argument
129 _calloc_impl(size_t nmemb,size_t size,int * errno_tmp) _calloc_impl() argument
[all...]
H A Dasan_malloc_linux.cpp72 INTERCEPTOR(void *,calloc,uptr nmemb,uptr size) INTERCEPTOR() argument
87 INTERCEPTOR(void *,reallocarray,void * ptr,uptr nmemb,uptr size) INTERCEPTOR() argument
H A Dasan_allocator.cpp1003 asan_calloc(uptr nmemb,uptr size,BufferedStackTrace * stack) asan_calloc() argument
1007 asan_reallocarray(void * p,uptr nmemb,uptr size,BufferedStackTrace * stack) asan_reallocarray() argument
[all...]
/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp115 static void *Calloc(uptr nmemb, uptr size, const StackTrace &stack) { in Calloc()
227 void *lsan_reallocarray(void *ptr, uptr nmemb, uptr size, in lsan_reallocarray()
238 void *lsan_calloc(uptr nmemb, uptr size, const StackTrace &stack) { in lsan_calloc()
H A Dlsan_interceptors.cpp86 INTERCEPTOR(void *,calloc,uptr nmemb,uptr size) INTERCEPTOR() argument
102 INTERCEPTOR(void *,reallocarray,void * q,uptr nmemb,uptr size) INTERCEPTOR() argument
/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_malloc_linux.cpp61 INTERCEPTOR(void *, calloc, uptr nmemb, uptr size) { in INTERCEPTOR() argument
78 INTERCEPTOR(void *, reallocarray, void *ptr, uptr nmemb, uptr size) { in INTERCEPTOR() argument
H A Dmemprof_allocator.cpp665 memprof_calloc(uptr nmemb,uptr size,BufferedStackTrace * stack) memprof_calloc() argument
669 memprof_reallocarray(void * p,uptr nmemb,uptr size,BufferedStackTrace * stack) memprof_reallocarray() argument
[all...]
/llvm-project/polly/lib/External/isl/
H A Disl_sort.c133 MergeSort (void *base, size_t nmemb, size_t size, in MergeSort()
H A Disl_ctx.c99 void *isl_calloc_or_die(isl_ctx *ctx, size_t nmemb, size_t size) in isl_calloc_or_die()
/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp293 if (UNLIKELY(CheckForCallocOverflow(size, nmemb))) { in MsanCalloc() argument
334 return SetErrnoOnNull(MsanCalloc(stack, nmemb, size)); in msan_calloc() argument
348 msan_reallocarray(void * ptr,uptr nmemb,uptr size,BufferedStackTrace * stack) msan_reallocarray() argument
[all...]
H A Dmsan_interceptors.cpp999 return msan_calloc(nmemb, size, &stack); in INTERCEPTOR() argument
125 INTERCEPTOR(SIZE_T,fread_unlocked,void * ptr,SIZE_T size,SIZE_T nmemb,void * file) INTERCEPTOR() argument
1013 INTERCEPTOR(void *,reallocarray,void * ptr,SIZE_T nmemb,SIZE_T size) INTERCEPTOR() argument
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cpp116 void *calloc(size_t nmemb, size_t size) { in calloc()
/llvm-project/openmp/runtime/src/
H A Dkmp_stub.cpp407 void *omp_calloc(size_t nmemb, size_t size, omp_allocator_handle_t al) { in omp_calloc()
418 void *omp_aligned_calloc(size_t a, size_t nmemb, size_t size, in omp_aligned_calloc()
H A Dkmp_alloc.cpp1519 void *__kmpc_calloc(int gtid, size_t nmemb, size_t size, in __kmpc_calloc()
1758 void *__kmp_calloc(int gtid, size_t algn, size_t nmemb, size_t size, in __kmp_calloc()
H A Dkmp_csupport.cpp4498 void *omp_calloc(size_t nmemb, size_t size, omp_allocator_handle_t allocator) { in omp_calloc() argument
4502 void *omp_aligned_calloc(size_t align, size_t nmemb, size_t size, in omp_aligned_calloc() argument
/llvm-project/clang/test/Analysis/
H A Dunix-fns.c150 void test_calloc_nowarn(size_t nmemb, size_t size) { in test_calloc_nowarn()