Searched refs:Calloc (Results 1 - 10 of 10) sorted by path

/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dst.c102 #define Calloc(n,s) (char*)xcalloc((n), (s)) macro
206 tbl->bins = (st_table_entry **) Calloc(size, sizeof(st_table_entry *));
362 (st_table_entry **) Calloc(new_num_bins, sizeof(st_table_entry *));
393 Calloc(num_bins, sizeof(st_table_entry *));
/freebsd-11-stable/stand/libsa/
H A Dzalloc_malloc.c127 Calloc(size_t n1, size_t n2, const char *file, int line) function
H A Dstand.h432 void *Calloc(size_t, size_t, const char *, int);
438 #define calloc(x, y) Calloc(x, y, __FILE__, __LINE__)
443 #define calloc(x, y) Calloc(x, y, NULL, 0)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp692 void *Calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) { function in struct:__asan::Allocator
896 return SetErrnoOnNull(instance.Calloc(nmemb, size, stack));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp107 static void *Calloc(uptr nmemb, uptr size, const StackTrace &stack) { function in namespace:__lsan
207 return SetErrnoOnNull(Calloc(nmemb, size, stack));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp1301 FunctionCallee Calloc = M->getOrInsertFunction( local
1304 CallInst *CI = B.CreateCall(Calloc, {Num, Size}, CallocName);
1307 dyn_cast<Function>(Calloc.getCallee()->stripPointerCasts()))
H A DSimplifyLibCalls.cpp1222 if (Value *Calloc = emitCalloc(ConstantInt::get(SizeType, 1),
1225 substituteInParent(Malloc, Calloc);
1226 return Calloc;
1238 if (auto *Calloc = foldMallocMemset(CI, B))
1239 return Calloc;
/freebsd-11-stable/sbin/fsck_ffs/
H A Dfsck.h393 Calloc(size_t cnt, size_t size) function
H A Dpass1.c160 info = Calloc((unsigned)inosused, sizeof(struct inostat));
230 info = Calloc((unsigned)inosused, sizeof(struct inostat));
H A Dsetup.c251 sblock.fs_csp = Calloc(1, sblock.fs_cssize);
275 blockmap = Calloc((unsigned)bmapsize, sizeof (char));
281 inostathead = Calloc(sblock.fs_ncg, sizeof(struct inostatlist));
291 inpsort = (struct inoinfo **)Calloc(listmax, sizeof(struct inoinfo *));
292 inphead = (struct inoinfo **)Calloc(numdirs, sizeof(struct inoinfo *));

Completed in 306 milliseconds