HomeSort by relevance Sort by last modified time
    Searched defs:allocated_size (Results 1 - 12 of 12) 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/chromium_org/third_party/webrtc/common_video/
plane.h 30 int CreateEmptyPlane(int allocated_size, int stride, int plane_size);
45 int allocated_size() const {return allocated_size_;} function in class:webrtc::Plane
plane_unittest.cc 23 EXPECT_EQ(0, plane.allocated_size());
35 EXPECT_EQ(size, plane.allocated_size());
43 int allocated_size, plane_size, stride; local
44 EXPECT_EQ(0, plane.allocated_size());
45 allocated_size = 30;
48 EXPECT_EQ(0, plane.CreateEmptyPlane(allocated_size, stride, plane_size));
49 EXPECT_EQ(allocated_size, plane.allocated_size());
59 int size1 = plane1.allocated_size();
66 EXPECT_EQ(size1, plane1.allocated_size());
    [all...]
texture_video_frame.cc 79 int TextureVideoFrame::allocated_size(PlaneType type) const { function in class:webrtc::TextureVideoFrame
i420_video_frame.cc 66 int ret = CreateFrame(videoFrame.allocated_size(kYPlane),
68 videoFrame.allocated_size(kUPlane),
70 videoFrame.allocated_size(kVPlane),
117 int I420VideoFrame::allocated_size(PlaneType type) const { function in class:webrtc::I420VideoFrame
120 return plane_ptr->allocated_size();
  /external/compiler-rt/lib/asan/
asan_malloc_mac.cc 47 uptr allocated_size = RoundUpTo(sizeof(asan_zone), page_size); local
49 (malloc_zone_t*)asan_memalign(page_size, allocated_size,
57 mprotect(new_zone, allocated_size, PROT_READ);
asan_allocator2.cc 337 uptr allocated_size = allocator.GetActuallyAllocatedSize(allocated); local
338 PoisonShadow((uptr)allocated, allocated_size, kAsanHeapLeftRedzoneMagic);
782 uptr allocated_size = AllocationSize(ptr); local
784 if (allocated_size == 0) {
788 return allocated_size;
  /external/chromium_org/third_party/libwebp/utils/
bit_writer.c 211 size_t allocated_size; local
221 allocated_size = (3 * max_bytes) >> 1;
222 if (allocated_size < size_required) allocated_size = size_required;
224 allocated_size = (((allocated_size >> 10) + 1) << 10);
225 allocated_buf = (uint8_t*)WebPSafeMalloc(1ULL, allocated_size);
236 bw->end_ = bw->buf_ + allocated_size;
  /external/clang/lib/Sema/
AttributeList.cpp 33 size_t AttributeList::allocated_size() const { function in class:AttributeList
75 size_t size = cur->allocated_size();
  /external/webp/src/utils/
bit_writer.c 211 size_t allocated_size; local
221 allocated_size = (3 * max_bytes) >> 1;
222 if (allocated_size < size_required) allocated_size = size_required;
224 allocated_size = (((allocated_size >> 10) + 1) << 10);
225 allocated_buf = (uint8_t*)WebPSafeMalloc(1ULL, allocated_size);
236 bw->end_ = bw->buf_ + allocated_size;
  /external/qemu/
kvm-all.c 314 unsigned long size, allocated_size = 0; local
331 if (size > allocated_size) {
333 allocated_size = size;
  /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...]

Completed in 2488 milliseconds