HomeSort by relevance Sort by last modified time
    Searched defs:allocated_size (Results 1 - 5 of 5) sorted by null

  /bionic/libc/bionic/
getcwd.cpp 43 size_t allocated_size = size; local
48 allocated_size = getpagesize();
50 buf = allocated_buf = static_cast<char*>(malloc(allocated_size));
59 int rc = __getcwd(buf, allocated_size);
  /external/clang/lib/Sema/
AttributeList.cpp 22 size_t AttributeList::allocated_size() const { function in class:AttributeList
62 size_t size = cur->allocated_size();
  /external/webp/src/utils/
bit_writer.c 199 size_t allocated_size; local
208 allocated_size = (3 * bw->max_bytes_) >> 1;
209 if (allocated_size < size_required) allocated_size = size_required;
211 allocated_size = (((allocated_size >> 10) + 1) << 10);
212 allocated_buf = (uint8_t*)malloc(allocated_size);
220 bw->max_bytes_ = allocated_size;
221 memset(allocated_buf + current_size, 0, allocated_size - current_size);
  /external/qemu/
kvm-all.c 300 unsigned long size, allocated_size = 0; local
317 } else if (size > allocated_size) {
320 allocated_size = size;
321 memset(d.dirty_bitmap, 0, allocated_size);
  /external/compiler-rt/lib/asan/
asan_allocator2.cc 688 uptr allocated_size = AllocationSize(ptr); local
690 if (allocated_size == 0) {
694 return allocated_size;

Completed in 101 milliseconds