HomeSort by relevance Sort by last modified time
    Searched refs:n_elements (Results 1 - 11 of 11) sorted by null

  /external/compiler-rt/lib/asan/tests/
asan_benchmarks_test.cc 19 static void ManyAccessFunc(T *x, size_t n_elements, size_t n_iter) {
23 for (size_t i = 0; i <= n_elements - 16; i += 16) {
  /external/valgrind/main/coregrind/
m_hashtable.c 45 UInt n_elements; member in struct:_VgHashTable
76 table->n_elements = 0;
85 return table->n_elements;
119 (UWord)table->n_elements );
148 table->n_elements++;
149 if ( (1 * (ULong)table->n_elements) > (1 * (ULong)table->n_chains) ) {
184 table->n_elements--;
203 *n_elems = table->n_elements;
  /bionic/libc/upstream-dlmalloc/
malloc.h 126 calloc(size_t n_elements, size_t element_size);
127 Returns a pointer to n_elements * element_size bytes, with all locations
333 independent_calloc(size_t n_elements, size_t element_size, void* chunks[]);
336 single cleared space, it returns an array of pointers to n_elements
348 n_elements in length. It is filled in with the pointers to the
352 null if the allocation failed. If n_elements is zero and "chunks"
384 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
386 independent_comalloc allocates, all at once, a set of n_elements
397 must be of at least n_elements in length. It is filled in with the
401 null if the allocation failed. If n_elements is zero and chunks i
    [all...]
malloc.c     [all...]
  /bionic/libc/bionic/
malloc_debug_leak.cpp 213 extern "C" void* fill_calloc(size_t n_elements, size_t elem_size) {
214 return g_malloc_dispatch->calloc(n_elements, elem_size);
369 extern "C" void* leak_calloc(size_t n_elements, size_t elem_size) {
371 return g_malloc_dispatch->calloc(n_elements, elem_size);
376 if (n_elements && SIZE_MAX / n_elements < elem_size) {
380 size_t size = n_elements * elem_size;
malloc_debug_qemu.cpp 772 extern "C" void* qemu_instrumented_calloc(size_t n_elements, size_t elem_size) {
773 if (n_elements == 0 || elem_size == 0) {
782 if (n_elements && SIZE_MAX / n_elements < elem_size) {
784 malloc_pid, getpid(), n_elements, elem_size);
    [all...]
malloc_debug_common.cpp 246 extern "C" void* calloc(size_t n_elements, size_t elem_size) {
247 return __libc_malloc_dispatch->calloc(n_elements, elem_size);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
hashtab.h 117 size_t n_elements; variable
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_malloc.c 731 calloc(size_t n_elements, size_t element_size);
732 Returns a pointer to n_elements * element_size bytes, with all locations
    [all...]
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 37 void *(*calloc)(uptr n_elements, uptr elem_size);
  /external/chromium_org/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 667 milliseconds