HomeSort by relevance Sort by last modified time
    Searched refs:alloc_size (Results 76 - 100 of 105) sorted by null

1 2 34 5

  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profiler.cc 217 static int64 last_dump_alloc = 0; // alloc_size when did we last dump
335 const int64 inuse_bytes = total.alloc_size - total.free_size;
340 total.alloc_size >=
344 total.alloc_size >> 20, inuse_bytes >> 20);
370 last_dump_alloc = total.alloc_size;
heap-profile-table.h 491 return (total_.allocs == 0) && (total_.alloc_size == 0);
513 total_.alloc_size += v.bytes;
memory_region_map.cc 513 curr->alloc_size += bucket.alloc_size;
608 b->alloc_size += size;
    [all...]
deep-heap-profile.cc 538 buffer->AppendInt64(bucket->alloc_size - bucket->free_size, 10);
656 if (bucket->alloc_size - bucket->free_size == 0) {
683 bucket->alloc_size - bucket->free_size <= 64) {
    [all...]
tcmalloc.cc 303 inline bool IsAllocSizePermitted(size_t alloc_size) {
307 return alloc_size <= ((std::numeric_limits<int>::max)() - kPageSize);
778 const size_t alloc_size = Static::sizemap()->ByteSizeForClass(cl); local
779 return alloc_size;
    [all...]
  /art/runtime/gc/
heap.cc 813 inline bool Heap::IsOutOfMemoryOnAllocation(size_t alloc_size, bool grow) {
814 size_t new_footprint = num_bytes_allocated_ + alloc_size;
830 inline mirror::Object* Heap::TryToAllocate(Thread* self, space::AllocSpace* space, size_t alloc_size
    [all...]
heap.h 445 mirror::Object* TryToAllocate(Thread* self, space::AllocSpace* space, size_t alloc_size, bool grow,
451 mirror::Object* TryToAllocate(Thread* self, space::DlMallocSpace* space, size_t alloc_size, bool grow,
456 bool IsOutOfMemoryOnAllocation(size_t alloc_size, bool grow);
  /external/kernel-headers/original/linux/
relay.h 61 size_t alloc_size; /* total buffer size allocated */ member in struct:rchan
  /external/libusb/libusb/os/
linux_usbfs.c 1348 size_t alloc_size; local
1459 size_t alloc_size; local
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
xmlversion.h.in 417 # define LIBXML_ATTR_ALLOC_SIZE(x) __attribute__((alloc_size(x)))
  /external/chromium_org/base/debug/
trace_event_impl.cc 337 size_t alloc_size = 0;
339 alloc_size += GetAllocLength(name);
341 alloc_size += GetAllocLength(arg_names_[i]);
356 alloc_size += GetAllocLength(arg_values_[i].as_string);
359 if (alloc_size) {
361 parameter_copy_storage_->data().resize(alloc_size);
363 const char* end = ptr + alloc_size;
    [all...]
  /external/chromium/chrome/browser/visitedlink/
visitedlink_master.cc 670 uint32 alloc_size = num_entries * sizeof(Fingerprint) + sizeof(SharedHeader); local
677 if (!shared_memory_->CreateAndMapAnonymous(alloc_size)) {
684 memset(shared_memory_->memory(), 0, alloc_size);
    [all...]
  /external/chromium_org/components/visitedlink/browser/
visitedlink_master.cc 673 uint32 alloc_size = num_entries * sizeof(Fingerprint) + sizeof(SharedHeader); local
680 if (!shared_memory_->CreateAndMapAnonymous(alloc_size)) {
687 memset(shared_memory_->memory(), 0, alloc_size);
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_usbfs.c 1673 size_t alloc_size; local
1833 size_t alloc_size; local
    [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.cpp 571 void * mpreal::mpreal_allocate(size_t alloc_size)
573 return(dlmalloc(alloc_size));
  /external/svox/pico/lib/
picoos.c 273 /** allocates 'alloc_size' bytes at start of raw memory block ('raw_mem',raw_mem_size)
280 picoos_objsize_t raw_mem_size, picoos_objsize_t alloc_size,
287 if (alloc_size < 1) {
288 alloc_size = 1;
290 alloc_size = ((alloc_size + PICOOS_ALIGN_SIZE - 1) / PICOOS_ALIGN_SIZE)
293 rest = raw_mem_size - alloc_size;
298 *rest_mem = raw_mem + alloc_size;
    [all...]
picoos.h 146 picoos_objsize_t raw_mem_size, picoos_objsize_t alloc_size,
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
sampler_test.cc 377 int alloc_size, int sampling_interval) {
378 double p = 1 - exp(-(static_cast<double>(alloc_size) / sampling_interval));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
sampler_test.cc 377 int alloc_size, int sampling_interval) {
378 double p = 1 - exp(-(static_cast<double>(alloc_size) / sampling_interval));
  /external/libusb/libusb/
io.c 1163 int alloc_size = sizeof(struct usbi_transfer) local
    [all...]
  /external/chromium_org/third_party/jemalloc/chromium/
jemalloc.c 4997 size_t alloc_size, chunk_size, offset; local
    [all...]
  /external/chromium_org/third_party/jemalloc/vendor/
jemalloc.c 4986 size_t alloc_size, chunk_size, offset; local
    [all...]
  /external/chromium/net/spdy/
spdy_framer.cc 1647 size_t alloc_size = size + SpdyFrame::size(); local
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/
io.c 1322 size_t alloc_size = sizeof(struct usbi_transfer) local
    [all...]
  /external/chromium_org/ui/surface/
accelerated_surface_transformer_win_unittest.cc 419 gfx::Size alloc_size((size.width() + kAlign - 1) / kAlign * kAlign,
422 ASSERT_TRUE(d3d_utils::CreateOrReuseLockableSurface(device(), alloc_size,
    [all...]

Completed in 560 milliseconds

1 2 34 5