/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/ |
malloc.h | 31 extern __mallocfunc void* calloc(size_t, size_t);
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/ |
malloc.h | 31 extern __mallocfunc void* calloc(size_t, size_t);
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/ |
malloc.h | 31 extern __mallocfunc void* calloc(size_t, size_t);
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/ |
malloc.h | 31 extern __mallocfunc void* calloc(size_t, size_t);
|
/system/bt/osi/src/ |
allocator.c | 54 calloc(1, real_size),
|
/system/extras/ext4_utils/ |
extent.c | 32 u8 *data = calloc(backing_len, 1); 34 critical_error_errno("calloc"); 123 u8 *data = calloc(info.block_size, 1); 125 critical_error_errno("calloc");
|
/external/mesa3d/src/mesa/program/ |
symbol_table.c | 189 struct scope_level *const scope = calloc(1, sizeof(*scope)); 208 struct _mesa_symbol_table_iterator *iter = calloc(1, sizeof(*iter)); 340 hdr = calloc(1, sizeof(*hdr)); 362 sym = calloc(1, sizeof(*sym)); 397 hdr = calloc(1, sizeof(*hdr)); 426 sym = calloc(1, sizeof(*sym)); 458 struct _mesa_symbol_table *table = calloc(1, sizeof(*table));
|
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
pp_init.c | 59 ppq = CALLOC(1, sizeof(struct pp_queue_t)); 60 tmp_q = CALLOC(curpos, sizeof(pp_func)); 61 ppq->shaders = CALLOC(curpos, sizeof(void *)); 62 ppq->verts = CALLOC(curpos, sizeof(unsigned int)); 81 CALLOC(pp_filters[i].shaders + 1, sizeof(void *));
|
/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). 109 // calloc Call Utility Functions. 113 /// is a calloc call.
|
/external/valgrind/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/drm_gralloc/ |
gralloc_drm_rockchip.c | 46 buf = calloc(1, sizeof(*buf)); 164 info = calloc(1, sizeof(*info));
|
/external/gptfdisk/ |
android_popt.cc | 33 calloc(count, sizeof(struct option)); 62 poptContext con = (poptContext) calloc(1, sizeof(struct _poptContext));
|
/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/skia/tools/ |
valgrind.supp | 68 fun:calloc 93 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*));
|