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 44 size_t allocated_size = size; local
50 buf = allocated_buf = static_cast<char*>(malloc(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);
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
CmdInterpretWext.c 635 int allocated_size, rates_allocated_size; local
655 allocated_size = pParam->content.uBssidListSize;
658 my_list = os_memoryAlloc (pCmdInterpret->hOs, allocated_size);
667 pParam->paramLength = allocated_size;
683 os_memoryFree (pCmdInterpret->hOs, my_list, allocated_size);
    [all...]
  /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);

Completed in 87 milliseconds