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

1 2

  /external/dbus/dbus/
dbus-mempool.c 99 int element_size; /**< size of a single object in the pool */ member in struct:DBusMemPool
132 * @param element_size size of an element allocated from the pool.
137 _dbus_mem_pool_new (int element_size,
147 if (element_size < 8)
148 element_size = 8;
153 _dbus_assert (element_size >= (int) sizeof (void*));
154 _dbus_assert (element_size >= (int) sizeof (DBusFreedElement));
159 pool->element_size = _DBUS_ALIGN_VALUE (element_size, sizeof (void *));
170 pool->block_size = pool->element_size * 8
    [all...]
dbus-mempool.h 35 DBusMemPool* _dbus_mem_pool_new (int element_size,
  /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/libvpx/mkvparser/
mkvparser.hpp 247 long long element_size);
277 long long element_size);
303 long long element_size);
334 long long element_size);
349 long long element_size);
373 long long element_size);
409 long long element_size);
486 long long element_size);
553 //long long element_size);
597 //long long element_size);
    [all...]
mkvparser.cpp 1120 const long long element_size = size + pos - element_start; local
1140 element_size);
1151 element_size);
1162 element_size);
1178 element_size);
1582 const long long element_size = (pos - idpos) + size; local
1681 const long long element_size = pCluster->GetElementSize(); local
2307 const long long element_size = (pos - element_start) + size; local
2695 const long long element_size = element_stop - element_start; local
3567 const long long element_size = stop - element_start; local
3883 const long long element_size = size + pos - idpos; local
4244 const long long element_size = element_stop - element_start; local
5588 const long long element_size = size1 + pos - element_start; local
5872 const long long element_size = stop - m_element_start; local
    [all...]
  /external/webkit/Tools/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/v8/samples/
shell.cc 456 int element_size) {
462 void* data = malloc(length * element_size);
463 memset(data, 0, length * element_size);
472 v8::Int32::New(element_size));
  /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/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 397 size_t element_size, i; local
438 element_size = 1;
442 element_size = sizeof(uint16_t);
446 element_size = sizeof(uint32_t);
450 element_size = sizeof(uint64_t);
453 element_size = sizeof(double);
457 element_size = sizeof(char *);
463 element_size = 1;
469 array + i * element_size);
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/arm-linux-androideabi/include/c++/4.4.3/
cxxabi.h 92 size_t element_size,
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/arm-linux-androideabi/include/c++/4.4.3/
cxxabi.h 92 size_t element_size,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
cxxabi.h 92 size_t element_size,
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/
cxxabi.h 92 size_t element_size,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/
cxxabi.h 92 size_t element_size,
  /external/protobuf/python/google/protobuf/internal/
encoder.py 188 element_size = value_size + tag_size
190 return len(value) * element_size
  /bionic/libc/bionic/
dlmalloc.c 4120 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/ia32/
macro-assembler-ia32.h 356 ScaleFactor element_size,
    [all...]
macro-assembler-ia32.cc 756 ScaleFactor element_size,
785 // We assume that element_count*element_size + header_size does not
787 lea(result_end, Operand(element_count, element_size, header_size));
    [all...]
  /external/opencv/cv/src/
cvmorph.cpp 732 int element_size = sizeof(*element) + size*sizeof(element->values[0]); local
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 1873 milliseconds

1 2