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

  /external/dbus/dbus/
dbus-mempool.c 98 int element_size; /**< size of a single object in the pool */ member in struct:DBusMemPool
131 * @param element_size size of an element allocated from the pool.
136 _dbus_mem_pool_new (int element_size,
146 if (element_size < 8)
147 element_size = 8;
152 _dbus_assert (element_size >= (int) sizeof (void*));
153 _dbus_assert (element_size >= (int) sizeof (DBusFreedElement));
158 pool->element_size = _DBUS_ALIGN_VALUE (element_size, sizeof (void *));
169 pool->block_size = pool->element_size * 8
    [all...]
dbus-mempool.h 35 DBusMemPool* _dbus_mem_pool_new (int element_size,
  /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)
  /external/webkit/WebKitTools/android/flex-2.5.4a/
misc.c 81 void *allocate_array( size, element_size )
83 size_t element_size;
86 size_t num_bytes = element_size * size;
755 void *reallocate_array( array, size, element_size )
758 size_t element_size;
761 size_t num_bytes = element_size * size;
  /external/bluetooth/glib/glib/
garray.h 72 guint element_size);
75 guint element_size,
  /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/protobuf/python/google/protobuf/internal/
encoder.py 188 element_size = value_size + tag_size
190 return len(value) * element_size
  /external/v8/src/ia32/
macro-assembler-ia32.h 242 ScaleFactor element_size,
macro-assembler-ia32.cc 804 ScaleFactor element_size,
819 lea(result_end, Operand(result, element_count, element_size, header_size));
    [all...]
  /bionic/libc/bionic/
dlmalloc.c 4080 size_t element_size; \/* chunksize of each element, if all same *\/ local
    [all...]
  /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
3944 size_t element_size; \/* chunksize of each element, if all same *\/ local
    [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
3954 size_t element_size; \/* chunksize of each element, if all same *\/ local
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.h 548 ScaleFactor element_size,
    [all...]
macro-assembler-x64.cc     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/v8/test/cctest/
test-api.cc 8904 int element_size = 0; local
    [all...]

Completed in 215 milliseconds