OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Calloc
(Results
1 - 15
of
15
) 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/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_allocator.cpp
107
static void *
Calloc
(uptr nmemb, uptr size, const StackTrace &stack) {
211
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/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_allocator.cpp
741
void *
Calloc
(uptr nmemb, uptr size, BufferedStackTrace *stack) {
968
return SetErrnoOnNull(instance.
Calloc
(nmemb, size, stack));
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp
1158
/// Fold memset[_chk](malloc(n), 0, n) -->
calloc
(1, n).
1187
// Replace the malloc with a
calloc
. We need the data layout to know what the
1192
if (Value *
Calloc
= emitCalloc(ConstantInt::get(SizeType, 1),
1195
substituteInParent(Malloc,
Calloc
);
1196
return
Calloc
;
1208
if (auto *
Calloc
= foldMallocMemset(CI, B))
1209
return
Calloc
;
BuildLibCalls.cpp
1667
FunctionCallee
Calloc
= M->getOrInsertFunction(
1670
CallInst *CI = B.CreateCall(
Calloc
, {Num, Size}, CallocName);
1673
dyn_cast<Function>(
Calloc
.getCallee()->stripPointerCasts()))
/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 53 milliseconds
Indexes created Tue Feb 24 01:34:59 UTC 2026