HomeSort by: relevance | last modified time | path
    Searched refs:Calloc (Results 1 - 11 of 11) sorted by relevancy

  /src/bin/csh/
alloc.c 88 Calloc(size_t s, size_t n)
92 if ((ptr = calloc(s, n)) == NULL) {
csh.h 90 #define xcalloc(n, s) Calloc(n, s)
extern.h 318 void *Calloc(size_t, size_t);
  /src/usr.bin/error/
subr.c 61 array = Calloc(listlength+1, sizeof (Eptr));
74 Calloc(size_t nelements, size_t size)
78 back = calloc(nelements, size);
324 wordv = Calloc(wordcount + 1, sizeof (char *));
371 nwordv = Calloc(nwordc, sizeof (char *));
filter.c 110 names_ignored = Calloc(nignored+1, sizeof (char *));
input.c 139 newerror = Calloc(1, sizeof(Edesc));
200 nwordv = Calloc(4, sizeof(char *));
touch.c 122 my_files = Calloc(my_nfiles + 3, sizeof (Eptr*));
123 touchedfiles = Calloc(my_nfiles+3, sizeof(touchedfiles[0]));
537 (*r_argv) = Calloc(n_pissed_on + 3, sizeof(char *));
error.h 262 void *Calloc(size_t, size_t);
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_allocator.cc 101 static void *Calloc(uptr nmemb, uptr size, const StackTrace &stack) {
190 return SetErrnoOnNull(Calloc(nmemb, size, stack));
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.cc 676 void *Calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) {
880 return SetErrnoOnNull(instance.Calloc(nmemb, size, stack));
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 367 TEST(MemorySanitizer, Calloc) {
368 S4 *x = (int*)Ident(calloc(1, sizeof(S4)));
379 char *x = Ident((char*)calloc(1, size));

Completed in 124 milliseconds