HomeSort by relevance Sort by last modified time
    Searched refs:alloc_size_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/courgette/
memory_allocator.h 306 NoThrowBuffer() : buffer_(NULL), size_(0), alloc_size_(0) {
315 alloc_.deallocate(buffer_, alloc_size_);
318 alloc_size_ = 0;
330 if (size <= alloc_size_)
339 alloc_size_ = kAllocationFailure;
343 alloc_.deallocate(buffer_, alloc_size_);
346 alloc_size_ = size;
362 if ((alloc_size_ - size_) < size) {
364 size_t new_size = alloc_size_ ? alloc_size_ : kStartSize
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_video_capture_host.h 104 gfx::Size alloc_size_; member in class:content::PepperVideoCaptureHost
pepper_video_capture_host.cc 125 if (alloc_size_ != frame->coded_size() || buffers_.empty()) {
127 alloc_size_ = frame->coded_size();
  /art/runtime/gc/space/
large_object_space.cc 199 AllocationInfo() : prev_free_(0), alloc_size_(0) {
203 return alloc_size_ & ~kFlagFree;
212 alloc_size_ = (size / FreeListSpace::kAlignment) | (free ? kFlagFree : 0U);
215 return (alloc_size_ & kFlagFree) != 0;
259 uint32_t alloc_size_; member in class:art::gc::space::AllocationInfo

Completed in 957 milliseconds