Home
last modified time | relevance | path

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

/freebsd/sbin/fsck_ffs/
H A Dsetup.c151 blockmap = Calloc((unsigned)bmapsize, sizeof (char)); in setup()
157 inostathead = Calloc(sblock.fs_ncg, sizeof(struct inostatlist)); in setup()
167 inpsort = (struct inoinfo **)Calloc(listmax, sizeof(struct inoinfo *)); in setup()
168 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.h443 Calloc(size_t cnt, size_t size) in Calloc() function
H A Dfsutil.c237 cgbufs = Calloc(sblock.fs_ncg, sizeof(struct bufarea)); in cglookup()
/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/stand/libsa/
H A Dstand.h478 void *Calloc(size_t, size_t, const char *, int);
496 #define calloc(x, y) Calloc(x, y, __FILE__, __LINE__)
503 #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
243 return SetErrnoOnNull(Calloc(nmemb, size, stack)); in lsan_calloc()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp2075 Value *Calloc = nullptr; in tryFoldIntoCalloc() local
2090 Calloc = IRB.CreateCall(ZeroedVariant, Args, ZeroedVariantName); in tryFoldIntoCalloc()
2093 Calloc = in tryFoldIntoCalloc()
2097 if (!Calloc) in tryFoldIntoCalloc()
2102 Updater.createMemoryAccessAfter(cast<Instruction>(Calloc), nullptr, in tryFoldIntoCalloc()
2106 Malloc->replaceAllUsesWith(Calloc); in tryFoldIntoCalloc()
/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/compiler-rt/lib/asan/
H A Dasan_allocator.cpp788 void *Calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) { in Calloc() function
1024 return SetErrnoOnNull(instance.Calloc(nmemb, size, stack)); in asan_calloc()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp2097 FunctionCallee Calloc = getOrInsertLibFunc( in emitCalloc() local
2100 CallInst *CI = B.CreateCall(Calloc, {Num, Size}, CallocName); in emitCalloc()
2103 dyn_cast<Function>(Calloc.getCallee()->stripPointerCasts())) in emitCalloc()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td2804 def Calloc : LibBuiltin<"stdlib.h"> {