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

  /external/bluetooth/bluez/src/
dbus-common.h 34 void *val, int n_elements);
dbus-common.c 252 void *val, int n_elements)
  /external/webkit/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)
  /bionic/libc/bionic/
malloc_debug_common.h 78 void* (*calloc)(size_t n_elements, size_t elem_size);
malloc_debug_qemu.c 607 void* qemu_instrumented_calloc(size_t n_elements, size_t elem_size);
791 qemu_instrumented_calloc(size_t n_elements, size_t elem_size)
798 if (n_elements == 0 || elem_size == 0) {
807 if (n_elements && MAX_SIZE_T / n_elements < elem_size) {
829 desc.requested_bytes = n_elements * elem_size;
    [all...]
dlmalloc.h 94 calloc(size_t n_elements, size_t element_size);
95 Returns a pointer to n_elements * element_size bytes, with all locations
272 independent_calloc(size_t n_elements, size_t element_size, void* chunks[]);
275 single cleared space, it returns an array of pointers to n_elements
287 n_elements in length. It is filled in with the pointers to the
291 null if the allocation failed. If n_elements is zero and "chunks"
326 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
328 independent_comalloc allocates, all at once, a set of n_elements
339 must be of at least n_elements in length. It is filled in with the
343 null if the allocation failed. If n_elements is zero and chunks i
    [all...]
malloc_debug_leak.c 398 void* chk_calloc(size_t n_elements, size_t elem_size)
405 if (n_elements && MAX_SIZE_T / n_elements < elem_size) {
408 size = n_elements * elem_size;
563 void* leak_calloc(size_t n_elements, size_t elem_size)
570 if (n_elements && MAX_SIZE_T / n_elements < elem_size) {
573 size = n_elements * elem_size;
dlmalloc.c     [all...]
malloc_debug_common.c 217 void* calloc(size_t n_elements, size_t elem_size) {
218 return __libc_malloc_dispatch->calloc(n_elements, elem_size);
  /external/dbus/dbus/
dbus-marshal-basic.c 855 int n_elements,
862 _dbus_string_init_const_len (&value_str, value, n_elements);
866 if (!_dbus_string_copy_len (&value_str, 0, n_elements,
870 pos += n_elements;
882 * @param n_elements number of elements
887 int n_elements,
899 end = d + (n_elements * alignment);
936 int n_elements,
948 n_elements, alignment);
956 int n_elements,
    [all...]
dbus-marshal-recursive.h 121 int *n_elements);
172 int n_elements);
dbus-marshal-basic.h 213 int n_elements,
226 int n_elements,
258 int n_elements,
dbus-message.c 724 int n_elements; local
736 n_elements = 0;
739 ++n_elements;
743 str_array = dbus_new0 (char*, n_elements + 1);
754 while (i < n_elements)
771 _dbus_assert (i == n_elements);
775 _dbus_assert (i == n_elements);
779 *n_elements_p = n_elements;
1558 int n_elements; local
1575 int n_elements; local
    [all...]
dbus-message.h 180 int *n_elements);
191 int n_elements);
dbus-marshal-recursive-util.c 1297 int n_elements; local
2167 int n_elements; local
2304 int n_elements; local
    [all...]
dbus-marshal-recursive.c 905 * @param n_elements place to return number of array elements
910 int *n_elements)
950 *n_elements = remaining_len / alignment;
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
hashtab.h 117 size_t n_elements; local
  /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.12/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/JavaScriptCore/wtf/
FastMalloc.h 72 TryMallocReturnValue tryFastCalloc(size_t n_elements, size_t element_size);
FastMalloc.cpp 255 TryMallocReturnValue tryFastCalloc(size_t n_elements, size_t element_size)
260 size_t totalBytes = n_elements * element_size;
261 if (n_elements > 1 && element_size && (totalBytes / element_size) != n_elements || (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= totalBytes))
274 return calloc(n_elements, element_size);
278 void* fastCalloc(size_t n_elements, size_t element_size)
283 TryMallocReturnValue returnValue = tryFastCalloc(n_elements, element_size);
287 void* result = calloc(n_elements, element_size);
292 // If either n_elements or element_size is 0, the behavior of calloc is implementation defined.
294 if (!n_elements || !element_size
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 646 milliseconds