Home
last modified time | relevance | path

Searched refs:Calloc (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/ofed/opensm/opensm/
H A Dst.c102 #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-14.2/sbin/fsck_ffs/
H A Dsetup.c159 blockmap = Calloc((unsigned)bmapsize, sizeof (char)); in setup()
165 inostathead = Calloc(sblock.fs_ncg, sizeof(struct inostatlist)); in setup()
175 inpsort = (struct inoinfo **)Calloc(listmax, sizeof(struct inoinfo *)); in setup()
176 inphash = (struct inohash *)Calloc(dirhash, sizeof(struct inohash)); in setup()
H A Dpass1.c169 info = Calloc((unsigned)inosused, sizeof(struct inostat)); in pass1()
241 info = Calloc((unsigned)inosused, sizeof(struct inostat)); in pass1()
H A Dfsck.h433 Calloc(size_t cnt, size_t size) in Calloc() function
/freebsd-14.2/stand/libsa/
H A Dstand.h461 void *Calloc(size_t, size_t, const char *, int);
479 #define calloc(x, y) Calloc(x, y, __FILE__, __LINE__)
486 #define calloc(x, y) Calloc(x, y, NULL, 0)
H A Dzalloc_malloc.c155 Calloc(size_t n1, size_t n2, const char *file, int line) in Calloc() function
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp115 static void *Calloc(uptr nmemb, uptr size, const StackTrace &stack) { in Calloc() function
239 return SetErrnoOnNull(Calloc(nmemb, size, stack)); in lsan_calloc()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp504 void *Calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) { in Calloc() function
606 return SetErrnoOnNull(instance.Calloc(nmemb, size, stack)); in memprof_calloc()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp1910 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-14.2/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp773 void *Calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) { in Calloc() function
1004 return SetErrnoOnNull(instance.Calloc(nmemb, size, stack)); in asan_calloc()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp1928 FunctionCallee Calloc = getOrInsertLibFunc(M, TLI, LibFunc_calloc, in emitCalloc() local
1931 CallInst *CI = B.CreateCall(Calloc, {Num, Size}, CallocName); in emitCalloc()
1934 dyn_cast<Function>(Calloc.getCallee()->stripPointerCasts())) in emitCalloc()