HomeSort by relevance Sort by last modified time
    Searched full:calloc (Results 176 - 200 of 2241) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/
malloc.h 31 extern __mallocfunc void* calloc(size_t, size_t);
  /system/extras/memory_replay/tests/
ActionTest.cpp 59 TEST(ActionTest, calloc) {
62 Action* action = Action::CreateAction(0x1234, "calloc", line, memory);
88 Action* action = Action::CreateAction(0x1234, "calloc", line1, memory);
92 action = Action::CreateAction(0x1234, "calloc", line2, memory);
  /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/libdrm/tests/amdgpu/
basic_tests.c 504 pm4 = calloc(pm4_dw, sizeof(*pm4));
507 ib_info = calloc(1, sizeof(*ib_info));
510 ibs_request = calloc(1, sizeof(*ibs_request));
517 resources = calloc(1, sizeof(amdgpu_bo_handle));
589 pm4 = calloc(pm4_dw, sizeof(*pm4));
592 ib_info = calloc(1, sizeof(*ib_info));
595 ibs_request = calloc(1, sizeof(*ibs_request));
602 resources = calloc(1, sizeof(amdgpu_bo_handle));
672 pm4 = calloc(pm4_dw, sizeof(*pm4));
675 ib_info = calloc(1, sizeof(*ib_info))
    [all...]
  /device/google/dragon/audio/hal/
cras_dsp_mod_builtin.c 58 module->data = calloc(4, sizeof(float*));
104 module->data = calloc(4, sizeof(float*));
161 module->data = calloc(1, sizeof(struct eq_data));
233 module->data = calloc(1, sizeof(struct eq2_data));
316 module->data = calloc(1, sizeof(struct drc_data));
405 module = calloc(1, sizeof(struct dsp_module));
  /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...]
  /external/fec/
dotprod_av.c 26 dp = (struct dotprod *)calloc(1,sizeof(struct dotprod));
33 dp->coeffs[i] = calloc(1+(len+i-1)/8,sizeof(vector signed short));
  /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/libdrm/tests/kms/
libkms-test-plane.c 61 plane->formats = calloc(p->count_formats, sizeof(uint32_t));
98 plane = calloc(1, sizeof(*plane));
  /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

Completed in 838 milliseconds

1 2 3 4 5 6 78 91011>>