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

  /external/chromium_org/mojo/system/
raw_shared_buffer_win.cc 58 size_t offset_rounding = offset % base::SysInfo::VMAllocationGranularity(); local
59 size_t real_offset = offset - offset_rounding;
60 size_t real_length = length + offset_rounding;
75 void* base = static_cast<char*>(real_base) + offset_rounding;
raw_shared_buffer_posix.cc 120 size_t offset_rounding = offset % base::SysInfo::VMAllocationGranularity(); local
121 size_t real_offset = offset - offset_rounding;
122 size_t real_length = length + offset_rounding;
138 void* base = static_cast<char*>(real_base) + offset_rounding;

Completed in 52 milliseconds