HomeSort by relevance Sort by last modified time
    Searched full:alloc_size (Results 51 - 75 of 136) sorted by null

1 23 4 5 6

  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/
relay.h 53 size_t alloc_size; member in struct:rchan
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/
relay.h 53 size_t alloc_size; member in struct:rchan
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
relay.h 53 size_t alloc_size; member in struct:rchan
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
relay.h 53 size_t alloc_size; member in struct:rchan
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
relay.h 53 size_t alloc_size; member in struct:rchan
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
relay.h 53 size_t alloc_size; member in struct:rchan
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
relay.h 53 size_t alloc_size; member in struct:rchan
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
relay.h 53 size_t alloc_size; member in struct:rchan
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
relay.h 53 size_t alloc_size; member in struct:rchan
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.cc 125 return (a->alloc_size - a->free_size) > (b->alloc_size - b->free_size);
220 b->alloc_size += bytes;
222 total_.alloc_size += bytes;
308 profile_stats->alloc_size += b.alloc_size;
316 b.alloc_size - b.free_size,
318 b.alloc_size,
502 b.alloc_size = v->bytes;
518 b.alloc_size = v->bytes
    [all...]
  /external/libusb-compat/libusb/
core.c 417 size_t alloc_size = sizeof(struct usb_endpoint_descriptor) * num_endpoints; local
420 dest->endpoint = malloc(alloc_size);
423 memset(dest->endpoint, 0, alloc_size);
451 size_t alloc_size = sizeof(struct usb_interface_descriptor) local
455 dest->altsetting = malloc(alloc_size);
458 memset(dest->altsetting, 0, alloc_size);
477 size_t alloc_size = sizeof(struct usb_interface) * num_interfaces; local
480 dest->interface = malloc(alloc_size);
483 memset(dest->interface, 0, alloc_size);
510 size_t alloc_size; local
    [all...]
  /external/chromium/chrome/common/
service_process_util.cc 234 uint32 alloc_size = sizeof(ServiceProcessSharedData);
236 true, alloc_size))
239 if (!shared_mem_service_data->Map(alloc_size))
242 memset(shared_mem_service_data->memory(), 0, alloc_size);
  /external/chromium_org/chrome/common/
service_process_util.cc 225 uint32 alloc_size = sizeof(ServiceProcessSharedData);
227 true, alloc_size))
230 if (!shared_mem_service_data->Map(alloc_size))
233 memset(shared_mem_service_data->memory(), 0, alloc_size);
  /external/oprofile/libutil/
op_libiberty.h 57 * Duplicates a region of memory without fail. First, alloc_size bytes
  /external/chromium_org/chrome/installer/mini_installer/
mini_string.cc 43 size_t SafeStrLen(const wchar_t* str, size_t alloc_size) {
44 if (!str || !alloc_size)
47 while (--alloc_size && str[len] != L'\0')
  /art/runtime/gc/space/
large_object_space.cc 154 size_t alloc_size = cur_header->AllocationSize(); local
156 byte* byte_end = byte_start + alloc_size - sizeof(AllocationHeader);
157 callback(byte_start, byte_end, alloc_size, arg);
316 size_t alloc_size = cur_header->AllocationSize(); local
318 byte* byte_end = byte_start + alloc_size - sizeof(AllocationHeader);
space_test.cc 343 size_t alloc_size; local
345 alloc_size = object_size;
347 alloc_size = test_rand(&rand_seed) % static_cast<size_t>(-object_size);
348 if (alloc_size < 8) {
349 alloc_size = 8;
355 object = space->Alloc(self, alloc_size, &bytes_allocated);
357 object = space->AllocWithGrowth(self, alloc_size, &bytes_allocated);
  /system/core/toolbox/
mount.c 32 int alloc_size; member in struct:extra_opts
74 if (newlen >= extra->alloc_size) {
83 extra->alloc_size = newlen + 1;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
HeapStatsLogger.java 68 "alloc_size=" + Debug.getGlobalAllocSize() + " bytes " +
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profile-table.h 64 int64 alloc_size; // Total size of all allocated objects so far member in struct:HeapProfileTable::Stats
70 alloc_size - free_size == x.alloc_size - x.free_size;
388 return (total_.allocs == 0) && (total_.alloc_size == 0);
410 total_.alloc_size += v.bytes;
heap-profiler.cc 168 static int64 last_dump_alloc = 0; // alloc_size when did we last dump
264 const int64 inuse_bytes = total.alloc_size - total.free_size;
268 total.alloc_size >=
272 total.alloc_size >> 20, inuse_bytes >> 20);
291 last_dump_alloc = total.alloc_size;
  /external/srec/portable/src/
phashtable.c 34 #define ALLOC_SIZE 16
49 PHashTableEntry entries[ALLOC_SIZE];
381 for (i = 0; i < ALLOC_SIZE - 1; ++i)
385 block->entries[ALLOC_SIZE-1].next = NULL;
390 for (i = 0, entry = block->entries; i < ALLOC_SIZE - 1; ++i, ++entry)
  /bionic/libc/kernel/common/linux/
relay.h 64 size_t alloc_size; member in struct:rchan
  /external/chromium/base/
process_util_mac.mm 657 void* oom_killer_cfallocator_system_default(CFIndex alloc_size,
660 void* result = g_old_cfallocator_system_default(alloc_size, hint, info);
666 void* oom_killer_cfallocator_malloc(CFIndex alloc_size,
669 void* result = g_old_cfallocator_malloc(alloc_size, hint, info);
675 void* oom_killer_cfallocator_malloc_zone(CFIndex alloc_size,
678 void* result = g_old_cfallocator_malloc_zone(alloc_size, hint, info);
  /external/chromium_org/base/process/
memory_mac.mm 463 void* oom_killer_cfallocator_system_default(CFIndex alloc_size,
466 void* result = g_old_cfallocator_system_default(alloc_size, hint, info);
472 void* oom_killer_cfallocator_malloc(CFIndex alloc_size,
475 void* result = g_old_cfallocator_malloc(alloc_size, hint, info);
481 void* oom_killer_cfallocator_malloc_zone(CFIndex alloc_size,
484 void* result = g_old_cfallocator_malloc_zone(alloc_size, hint, info);

Completed in 1150 milliseconds

1 23 4 5 6