HomeSort by relevance Sort by last modified time
    Searched full:n_elements (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.cpp 116 void *fastCalloc(size_t n_elements, size_t element_size) { return calloc(n_elements, element_size); }
123 void *fastCalloc(size_t n_elements, size_t element_size) { return MemoryManager::m_calloc(n_elements, element_size); }
154 TryMallocReturnValue tryFastCalloc(size_t n_elements, size_t element_size)
157 return fastCalloc(n_elements, element_size);
FastMallocWinCE.h 34 void* fastCalloc(size_t n_elements, size_t element_size);
41 void* tryFastCalloc(size_t n_elements, size_t element_size);
53 #define calloc(n_elements, element_size) fastCalloc(n_elements, element_size)
  /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...]
  /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) {
  /bionic/libc/bionic/
malloc_debug_leak.cpp 213 extern "C" void* fill_calloc(size_t n_elements, size_t elem_size) {
214 return dlcalloc(n_elements, elem_size);
323 extern "C" void* leak_calloc(size_t n_elements, size_t elem_size) {
326 if (n_elements && MAX_SIZE_T / n_elements < elem_size) {
329 size_t size = n_elements * elem_size;
malloc_debug_qemu.cpp 579 void* qemu_instrumented_calloc(size_t n_elements, size_t elem_size);
754 void* qemu_instrumented_calloc(size_t n_elements, size_t elem_size) {
755 if (n_elements == 0 || elem_size == 0) {
764 if (n_elements && MAX_SIZE_T / n_elements < elem_size) {
788 desc.requested_bytes = n_elements * elem_size;
    [all...]
malloc_debug_common.cpp 233 extern "C" void* calloc(size_t n_elements, size_t elem_size) {
234 return __libc_malloc_dispatch->calloc(n_elements, elem_size);
  /external/harfbuzz/src/
harfbuzz-dump-main.c 33 #define N_ELEMENTS(arr) (sizeof(arr)/ sizeof((arr)[0]))
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 34 void* (*calloc)(uptr n_elements, uptr 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/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/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h 73 TryMallocReturnValue tryFastCalloc(size_t n_elements, size_t element_size);
FastMalloc.cpp 264 TryMallocReturnValue tryFastCalloc(size_t n_elements, size_t element_size)
269 size_t totalBytes = n_elements * element_size;
270 if (n_elements > 1 && element_size && (totalBytes / element_size) != n_elements || (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= totalBytes))
283 return calloc(n_elements, element_size);
287 void* fastCalloc(size_t n_elements, size_t element_size)
292 TryMallocReturnValue returnValue = tryFastCalloc(n_elements, element_size);
297 void* result = calloc(n_elements, element_size);
302 // If either n_elements or element_size is 0, the behavior of calloc is implementation defined.
304 if (!n_elements || !element_size
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/lib/
libc.so 

Completed in 436 milliseconds

1 2 3