Searched defs:n_elements (Results 1 - 3 of 3) sorted by relevance

/external/compiler-rt/lib/asan/tests/
H A Dasan_benchmarks_test.cc19 static void ManyAccessFunc(T *x, size_t n_elements, size_t n_iter) { argument
23 for (size_t i = 0; i <= n_elements - 16; i += 16) {
/external/valgrind/main/coregrind/
H A Dm_hashtable.c45 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;
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c731 calloc(size_t n_elements, size_t element_size);
732 Returns a pointer to n_elements * element_size bytes, with all locations
854 independent_calloc(size_t n_elements, size_t element_size, void* chunks[]);
857 single cleared space, it returns an array of pointers to n_elements
869 n_elements in length. It is filled in with the pointers to the
873 null if the allocation failed. If n_elements is zero and "chunks"
908 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
910 independent_comalloc allocates, all at once, a set of n_elements
921 must be of at least n_elements in length. It is filled in with the
925 null if the allocation failed. If n_elements i
3940 ialloc(mstate m, size_t n_elements, size_t* sizes, int opts, void* chunks[]) argument
4303 dlcalloc(size_t n_elements, size_t elem_size) argument
4345 dlindependent_calloc(size_t n_elements, size_t elem_size, void* chunks[]) argument
4351 dlindependent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]) argument
4701 mspace_calloc(mspace msp, size_t n_elements, size_t elem_size) argument
4754 mspace_independent_calloc(mspace msp, size_t n_elements, size_t elem_size, void* chunks[]) argument
4765 mspace_independent_comalloc(mspace msp, size_t n_elements, size_t sizes[], void* chunks[]) argument
[all...]

Completed in 218 milliseconds