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

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc 118 uptr size_to_allocate = Max(size, GetPageSizeCached()); local
120 (char*)MmapOrDie(size_to_allocate, __func__);
121 allocated_end_ = allocated_current_ + size_to_allocate;
124 size_to_allocate);
  /external/chromium_org/media/filters/
gpu_video_decoder.cc 527 size_t size_to_allocate = std::max(min_size, kSharedMemorySegmentBytes); local
528 base::SharedMemory* shm = factories_->CreateSharedMemory(size_to_allocate);
532 return new SHMBuffer(shm, size_to_allocate);
  /external/chromium_org/content/renderer/media/
rtc_video_decoder.cc 755 size_t size_to_allocate = std::max(min_size, kSharedMemorySegmentBytes); local
757 base::SharedMemory* shm = factories_->CreateSharedMemory(size_to_allocate);
762 scoped_ptr<SHMBuffer>(new SHMBuffer(shm, size_to_allocate)));

Completed in 706 milliseconds