Home
last modified time | relevance | path

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

/freebsd/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/sbin/fsck_ffs/
H A Dsetup.c152 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 Dpass1.c163 info = Calloc((unsigned)inosused, sizeof(struct inostat)); in pass1()
235 info = Calloc((unsigned)inosused, sizeof(struct inostat)); in pass1()
H A Dfsck.h442 Calloc(size_t cnt, size_t size)
446 Calloc(size_t cnt, size_t size) Calloc() function
H A Dfsutil.c237 cgbufs = Calloc(sblock.fs_ncg, sizeof(struct bufarea)); in cglookup()
/freebsd/stand/libsa/
H A Dstand.h466 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 Dzalloc_malloc.c155 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 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/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp566 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 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/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp781 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 DBuildLibCalls.cpp1939 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 DBuiltins.td2657 def Calloc : LibBuiltin<"stdlib.h"> {