/freebsd/contrib/ofed/opensm/opensm/ |
H A D | st.c | 102 #define Calloc(n,s) (char*)xcalloc((n), (s)) macro 204 tbl->bins = (st_table_entry **) Calloc(size, sizeof(st_table_entry *)); in st_init_table_with_size() 346 (st_table_entry **) Calloc(new_num_bins, sizeof(st_table_entry *)); in rehash() 376 Calloc(num_bins, sizeof(st_table_entry *)); in st_copy()
|
/freebsd/sbin/fsck_ffs/ |
H A D | setup.c | 152 blockmap = Calloc((unsigned)bmapsize, sizeof (char)); in setup() 158 inostathead = Calloc(sblock.fs_ncg, sizeof(struct inostatlist)); in setup() 168 inpsort = (struct inoinfo **)Calloc(listmax, sizeof(struct inoinfo *)); in setup() 169 inphash = (struct inohash *)Calloc(dirhash, sizeof(struct inohash)); in setup()
|
H A D | pass1.c | 163 info = Calloc((unsigned)inosused, sizeof(struct inostat)); in pass1() 235 info = Calloc((unsigned)inosused, sizeof(struct inostat)); in pass1()
|
H A D | fsck.h | 442 Calloc(size_t cnt, size_t size) 446 Calloc(size_t cnt, size_t size) Calloc() function
|
H A D | fsutil.c | 237 cgbufs = Calloc(sblock.fs_ncg, sizeof(struct bufarea)); in cglookup()
|
/freebsd/stand/libsa/ |
H A D | stand.h | 466 void *Calloc(size_t, size_t, const char *, int); 484 #define calloc(x, y) Calloc(x, y, __FILE__, __LINE__) 491 #define calloc(x, y) Calloc(x, y, NULL, 0)
|
H A D | zalloc_malloc.c | 155 Calloc(size_t n1, size_t n2, const char *file, int line) in Calloc() function
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_allocator.cpp | 115 static void *Calloc(uptr nmemb, uptr size, const StackTrace &stack) { in Calloc() function 239 return SetErrnoOnNull(Calloc(nmemb, size, stack)); in lsan_calloc()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_allocator.cpp | 566 void *Calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) { in Calloc() function 666 return SetErrnoOnNull(instance.Calloc(nmemb, size, stack)); in memprof_calloc()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | DeadStoreElimination.cpp | 1910 auto *Calloc = emitCalloc(ConstantInt::get(SizeTTy, 1), in tryFoldIntoCalloc() local 1912 if (!Calloc) in tryFoldIntoCalloc() 1917 Updater.createMemoryAccessAfter(cast<Instruction>(Calloc), nullptr, in tryFoldIntoCalloc() 1921 Malloc->replaceAllUsesWith(Calloc); in tryFoldIntoCalloc()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_allocator.cpp | 781 void *Calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) { in Calloc() function 1012 return SetErrnoOnNull(instance.Calloc(nmemb, size, stack)); in asan_calloc()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | BuildLibCalls.cpp | 1939 FunctionCallee Calloc = getOrInsertLibFunc(M, TLI, LibFunc_calloc, in emitCalloc() local 1942 CallInst *CI = B.CreateCall(Calloc, {Num, Size}, CallocName); in emitCalloc() 1945 dyn_cast<Function>(Calloc.getCallee()->stripPointerCasts())) in emitCalloc()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Builtins.td | 2657 def Calloc : LibBuiltin<"stdlib.h"> {
|