HomeSort by relevance Sort by last modified time
    Searched full:calloc (Results 126 - 150 of 1865) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /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/extras/ext4_utils/
extent.c 33 u8 *data = calloc(backing_len, 1);
35 critical_error_errno("calloc");
124 u8 *data = calloc(info.block_size, 1);
126 critical_error_errno("calloc");
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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/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).
112 // calloc Call Utility Functions.
116 /// 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...]
  /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));

Completed in 1539 milliseconds

1 2 3 4 56 7 8 91011>>