Home
last modified time | relevance | path

Searched refs:to_insert (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/otautil/
Drangeset.cpp244 void SortedRangeSet::Insert(const Range& to_insert) { in Insert() argument
245 SortedRangeSet rs({ to_insert }); in Insert()
261 Range to_insert = temp.front(); in Insert() local
263 if (it->first <= to_insert.second) { in Insert()
264 to_insert.second = std::max(to_insert.second, it->second); in Insert()
266 ranges_.push_back(to_insert); in Insert()
267 blocks_ += (to_insert.second - to_insert.first); in Insert()
268 to_insert = *it; in Insert()
271 ranges_.push_back(to_insert); in Insert()
272 blocks_ += (to_insert.second - to_insert.first); in Insert()
[all …]
/bootable/recovery/otautil/include/otautil/
Drangeset.h154 void Insert(const Range& to_insert);