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

  /bionic/libc/bionic/
getcwd.cpp 46 size_t allocated_size = size; variable
51 allocated_size = getpagesize();
53 buf = allocated_buf = static_cast<char*>(malloc(allocated_size));
62 int rc = __getcwd(buf, allocated_size);
  /external/pcre/dist2/src/sljit/
sljitExecAllocator.c 147 static sljit_uw allocated_size; variable
204 allocated_size += size;
225 allocated_size += size;
236 allocated_size += chunk_size;
253 allocated_size -= header->size;
280 /* If this block is freed, we still have (allocated_size / 2) free space. */
281 if (total_size - free_block->size > (allocated_size * 3 / 2)) {
  /bionic/linker/
linker_allocator.cpp 248 size_t allocated_size = PAGE_END(size + sizeof(page_info)); local
249 void* map_ptr = mmap(nullptr, allocated_size,
256 prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, map_ptr, allocated_size, "linker_alloc_lob");
261 info->allocated_size = allocated_size;
309 old_size = info->allocated_size - sizeof(page_info);
337 munmap(info, info->allocated_size);
linker_allocator.h 56 // we use allocated_size for large objects allocator
57 size_t allocated_size; member in union:page_info::__anon1371
  /external/webp/src/utils/
bit_writer_utils.c 208 size_t allocated_size; local
218 allocated_size = (3 * max_bytes) >> 1;
219 if (allocated_size < size_required) allocated_size = size_required;
221 allocated_size = (((allocated_size >> 10) + 1) << 10);
222 allocated_buf = (uint8_t*)WebPSafeMalloc(1ULL, allocated_size);
233 bw->end_ = bw->buf_ + allocated_size;
  /external/webrtc/webrtc/common_video/
video_frame.cc 183 int VideoFrame::allocated_size(PlaneType type) const { function in class:webrtc::VideoFrame
  /external/clang/lib/Sema/
AttributeList.cpp 34 size_t AttributeList::allocated_size() const { function in class:AttributeList
76 size_t size = cur->allocated_size();
  /external/libcxx/test/support/
controlled_allocators.hpp 69 std::size_t allocated_size; member in struct:AllocController
103 allocated_size += s;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
test_memory_resource.hpp 64 std::size_t allocated_size; member in struct:AllocController
87 allocated_size += s;
  /external/compiler-rt/lib/interception/
interception_win.cc 293 uptr allocated_size; member in struct:__interception::TrampolineMemoryRegion
356 current->allocated_size = 0;
360 } else if (current->max_size - current->allocated_size > size) {
363 uptr next_address = current->content + current->allocated_size;
379 uptr allocated_space = region->content + region->allocated_size;
380 region->allocated_size += size;
  /external/compiler-rt/lib/asan/
asan_allocator.cc 384 uptr allocated_size = allocator.GetActuallyAllocatedSize(allocated); local
385 PoisonShadow((uptr)allocated, allocated_size, kAsanHeapLeftRedzoneMagic);
902 uptr allocated_size = instance.AllocationSize(ptr); local
904 if (allocated_size == 0) {
908 return allocated_size;
  /toolchain/binutils/binutils-2.25/gold/
gdb-index.cc 634 size_t allocated_size; local
635 ret = cplus_demangle_print(DMGL_NO_OPTS, tree, 30, &allocated_size);
    [all...]
  /external/cmockery/cmockery_0_1_2/src/
cmockery.c 61 size_t allocated_size; // Total size of the allocated block. member in struct:MallocBlockInfo
    [all...]
  /external/pdfium/third_party/libtiff/
tif_dir.h 271 uint32 allocated_size; /* 0 if array is constant, other if modified by future definition extension support */ member in struct:_TIFFFieldArray
  /external/protobuf/src/google/protobuf/
repeated_field.h 523 int allocated_size; member in struct:google::protobuf::internal::RepeatedPtrFieldBase::Rep
    [all...]
  /external/syslinux/core/fs/ntfs/
ntfs.h 83 int64_t allocated_size; member in struct:ntfs_inode
294 int64_t allocated_size; member in struct:ntfs_attr_record::__anon33672::__anon33674
297 * allocated_size if attribute value is
339 uint64_t allocated_size; member in struct:ntfs_filename_attr
397 uint32_t allocated_size; member in struct:ntfs_idx_header
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
repeated_field.h 523 int allocated_size; member in struct:google::protobuf::internal::RepeatedPtrFieldBase::Rep
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
mmo.c 279 bfd_size_type allocated_size; member in struct:mmo_data_list_struct
1444 bfd_size_type allocated_size; local
    [all...]
  /external/curl/lib/
urldata.h 864 size_t allocated_size; /* Size of temporal store */ member in struct:postponed_data
    [all...]

Completed in 665 milliseconds