HomeSort by relevance Sort by last modified time
    Searched full:calloc (Results 201 - 225 of 2121) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/test/Analysis/
malloc.mm 98 char *p = (char *)calloc(sizeof(int), 1);
103 char *p = (char *)calloc(sizeof(int), 1);
108 char *p = (char *)calloc(sizeof(int), 1);
204 void *calloc(size_t, size_t);
211 void* b = calloc(8, 8);
223 void* b = calloc(8, 8);
outofbound.c 5 void *calloc(size_t, size_t);
42 char *p = calloc(2,2);
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 37 /// allocates or reallocates memory (either malloc, calloc, realloc, or strdup
43 /// NoAlias pointer (including malloc/calloc/realloc/strdup-like functions).
53 /// allocates zero-filled memory (such as calloc).
58 /// allocates memory (either malloc, calloc, or strdup like).
116 // calloc Call Utility Functions.
120 /// is a calloc call.
  /external/valgrind/main/memcheck/tests/
wrap6.c 182 UInt* words = calloc(200, sizeof(UInt));
208 UInt* words = calloc(200, sizeof(UInt));
235 UInt* words = calloc(200, sizeof(UInt));
263 UInt* words = calloc(200, sizeof(UInt));
292 UInt* words = calloc(200, sizeof(UInt));
322 UInt* words = calloc(200, sizeof(UInt));
353 UInt* words = calloc(200, sizeof(UInt));
386 UInt* words = calloc(200, sizeof(UInt));
422 UInt* words = calloc(200, sizeof(UInt));
459 UInt* words = calloc(200, sizeof(UInt))
    [all...]
malloc_free_fill.c 61 fprintf(stderr, "\ntest calloc:\n");
62 a = calloc(100, sizeof(int)); assert(r);
origin3-no.c 97 // the middle byte keeps its original value, which is zero (from calloc).
102 int* ptr_to_3_undef_ints = calloc(3, sizeof(int));
  /external/chromium_org/third_party/mesa/src/src/gallium/
README.portability 36 * Use MALLOC, CALLOC, FREE instead of the malloc, calloc, free functions.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_surfaces.c 50 us->u.array = CALLOC(pt->last_level + 1, sizeof(struct pipe_surface *));
61 ps = (struct pipe_surface *)CALLOC(1, surface_struct_size);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_heap.c 34 r = calloc(1, sizeof(struct nouveau_heap));
64 r = calloc(1, sizeof(struct nouveau_heap));
  /external/chromium_org/third_party/skia/tools/
valgrind.supp 56 fun:calloc
81 fun:calloc
  /external/libcxxabi/src/
cxa_exception_storage.cpp 48 #include <cstdlib> // for calloc, free
80 (std::calloc (1, sizeof (__cxa_eh_globals)));
  /external/libnl/lib/
data.c 42 data = calloc(1, sizeof(*data));
46 data->d_data = calloc(1, size);
  /external/llvm/test/Transforms/LoopVectorize/
calloc.ll 14 %call = tail call i8* @calloc(i64 1, i64 %add28) nounwind
50 declare noalias i8* @calloc(i64, i64) nounwind
  /external/mesa3d/src/gallium/
README.portability 36 * Use MALLOC, CALLOC, FREE instead of the malloc, calloc, free functions.
  /external/mesa3d/src/gallium/auxiliary/util/
u_surfaces.c 50 us->u.array = CALLOC(pt->last_level + 1, sizeof(struct pipe_surface *));
61 ps = (struct pipe_surface *)CALLOC(1, surface_struct_size);
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_heap.c 34 r = calloc(1, sizeof(struct nouveau_heap));
64 r = calloc(1, sizeof(struct nouveau_heap));
  /external/pcre/dist/
makevp.bat 48 tlib %BORLAND%\lib\cw32.lib *calloc *del *strncmp *memcpy *memmove *memset *memcmp *strlen
50 tlib pcre%PCRE_VER%.lib @makevp_l.txt +calloc.obj +del.obj +strncmp.obj +memcpy.obj +memmove.obj +memset.obj +memcmp.obj +strlen.obj
  /external/pixman/pixman/
pixman-compiler.h 134 type *value = calloc (1, sizeof (type)); \
205 type *value = calloc (1, sizeof (type)); \
  /external/skia/tools/
valgrind.supp 56 fun:calloc
80 fun:calloc
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetUniformIndices.cpp 22 _names = (const char**)calloc(_count, sizeof(const char*));
108 _names = (const char**)calloc(_count, sizeof(const char*));
  /hardware/intel/common/libva/va/glx/
va_glx.c 93 pDisplayContextGLX = calloc(1, sizeof(*pDisplayContextGLX));
97 pDriverContextGLX = calloc(1, sizeof(*pDriverContextGLX));
  /hardware/intel/img/libdrm/libdrm/nouveau/
nouveau_channel.c 41 nvchan = calloc(1, sizeof(struct nouveau_channel_priv));
66 struct nouveau_grobj_priv *gr = calloc(1, sizeof(*gr));
nouveau_grobj.c 40 nvgrobj = calloc(1, sizeof(*nvgrobj));
72 nvgrobj = calloc(1, sizeof(struct nouveau_grobj_priv));
nouveau_resource.c 34 r = calloc(1, sizeof(struct nouveau_resource));
55 r = calloc(1, sizeof(struct nouveau_resource));
  /hardware/intel/img/libdrm/libdrm/radeon/
radeon_track.c 46 event = (void*)calloc(1,sizeof(struct radeon_track_event));
70 track = (struct radeon_track*)calloc(1, sizeof(struct radeon_track));

Completed in 411 milliseconds

1 2 3 4 5 6 7 891011>>