/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...] |
/external/eigen/unsupported/test/mpreal/ |
dlmalloc.h | 114 calloc(size_t n_elements, size_t element_size);
115 Returns a pointer to n_elements * element_size bytes, with all locations
228 independent_calloc(size_t n_elements, size_t element_size, void* chunks[]);
231 single cleared space, it returns an array of pointers to n_elements
243 n_elements in length. It is filled in with the pointers to the
247 null if the allocation failed. If n_elements is zero and "chunks"
282 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
284 independent_comalloc allocates, all at once, a set of n_elements
295 must be of at least n_elements in length. It is filled in with the
299 null if the allocation failed. If n_elements is zero and chunks is [all...] |
dlmalloc.c | [all...] |
/bionic/libc/bionic/ |
malloc_debug_qemu.cpp | 579 extern "C" void* qemu_instrumented_calloc(size_t n_elements, size_t elem_size); 755 extern "C" void* qemu_instrumented_calloc(size_t n_elements, size_t elem_size) { 756 if (n_elements == 0 || elem_size == 0) { 765 if (n_elements && MAX_SIZE_T / n_elements < elem_size) { 789 desc.requested_bytes = n_elements * elem_size; [all...] |
malloc_debug_leak.cpp | 214 extern "C" void* fill_calloc(size_t n_elements, size_t elem_size) { 215 return dlcalloc(n_elements, elem_size); 330 extern "C" void* leak_calloc(size_t n_elements, size_t elem_size) { 333 if (n_elements && MAX_SIZE_T / n_elements < elem_size) { 336 size_t size = n_elements * elem_size;
|
malloc_debug_common.cpp | 230 extern "C" void* calloc(size_t n_elements, size_t elem_size) { 231 return __libc_malloc_dispatch->calloc(n_elements, elem_size);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
hashtab.h | 117 size_t n_elements; variable
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
hashtab.h | 117 size_t n_elements; variable
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
hashtab.h | 117 size_t n_elements; variable
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
hashtab.h | 117 size_t n_elements; variable
|
/external/compiler-rt/lib/asan/ |
asan_malloc_linux.cc | 35 void* (*calloc)(uptr n_elements, uptr elem_size);
|
/external/libffi/src/ |
dlmalloc.c | 687 calloc(size_t n_elements, size_t element_size); 688 Returns a pointer to n_elements * element_size bytes, with all locations [all...] |
/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/chromium_org/v8/test/mjsunit/ |
unicode-test.js | [all...] |
/external/v8/test/mjsunit/ |
unicode-test.js | [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
FastMalloc.cpp | 225 void* fastCalloc(size_t n_elements, size_t element_size) 229 void* result = calloc(n_elements, element_size); [all...] |