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

1 2 3 4 5 6 7 891011>>

  /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/selinux/libselinux/utils/
selabel_lookup_best_match.c 96 links = calloc(num_links + 1, sizeof(char *));
99 fprintf(stderr, "ERROR: calloc failed.\n");
  /external/valgrind/memcheck/tests/
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));
  /frameworks/av/media/libnbaio/
SourceAudioBufferProvider.cpp 65 // But in this case the calloc() can also fail due to integer overflow,
67 mAllocated = calloc(buffer->frameCount, mFrameSize);
  /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/bsp/intel/peripheral/libmraa/src/arm/
96boards.c 60 mraa_board_t* b = (mraa_board_t*) calloc(1, sizeof(mraa_board_t));
100 b->adv_func = (mraa_adv_func_t*) calloc(1, sizeof(mraa_adv_func_t));
  /hardware/intel/common/libva/va/glx/
va_glx.c 93 pDisplayContextGLX = calloc(1, sizeof(*pDisplayContextGLX));
97 pDriverContextGLX = calloc(1, sizeof(*pDriverContextGLX));
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_exception_storage.cpp 48 #include <cstdlib> // for calloc, free
80 (std::calloc (1, sizeof (__cxa_eh_globals)));
  /system/core/libmemtrack/
memtrack.c 68 return calloc(sizeof(struct memtrack_proc), 1);
98 t->records = calloc(sizeof(*t->records), num_records);
  /system/extras/pagecache/
dumpcache.c 53 info = calloc(1, sizeof(*info));
88 unsigned char* mincore_data = calloc(1, num_file_pages);
  /art/runtime/base/
allocator.cc 34 return calloc(sizeof(uint8_t), size);
  /bionic/libc/private/
ThreadLocalBuffer.h 49 result = reinterpret_cast<T*>(calloc(1, Size));
bionic_malloc_dispatch.h 55 MallocCalloc calloc; member in struct:MallocDispatch
  /development/ndk/platforms/android-21/include/
malloc.h 31 extern void* calloc(size_t item_count, size_t item_size) __mallocfunc __wur __attribute__((alloc_size(1,2)));
  /docs/source.android.com/src/security/enhancements/
enhancements41.jd 18 <li>OpenBSD calloc to prevent integer overflows during memory allocation</li>
  /external/clang/test/Analysis/
uninit-vals.m 7 void *calloc(size_t nmemb, size_t size);
62 Circle *testObj = calloc(sizeof(Circle), 1);
106 IntCircle *testObj = calloc(sizeof(IntCircle), 1);
189 IntCircle2D *testObj = calloc(sizeof(IntCircle2D), 1);
  /external/cmockery/cmockery_0_1_2/
configure.ac 42 AC_CHECK_FUNCS(calloc)
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 62 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) {
64 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
268 INTERCEPT_FUNCTION(calloc);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_malloc_mac.inc 114 INTERCEPTOR(void *, calloc, size_t nmemb, size_t size) {
165 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
314 sanitizer_zone.calloc = &__sanitizer_mz_calloc;
  /external/elfutils/lib/
xmalloc.c 64 p = calloc (n, s);
  /external/libdrm/amdgpu/
amdgpu_vamgr.c 109 n = calloc(1, sizeof(struct amdgpu_bo_va_hole));
145 n = calloc(1, sizeof(struct amdgpu_bo_va_hole));
216 next = calloc(1, sizeof(struct amdgpu_bo_va_hole));
259 va = calloc(1, sizeof(struct amdgpu_va));

Completed in 735 milliseconds

1 2 3 4 5 6 7 891011>>