Home
last modified time | relevance | path

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

/bootable/recovery/otautil/
Drangeset.cpp192 void SortedRangeSet::Insert(const Range& to_insert) { in Insert() argument
193 SortedRangeSet rs({ to_insert }); in Insert()
209 Range to_insert = temp.front(); in Insert() local
211 if (it->first <= to_insert.second) { in Insert()
212 to_insert.second = std::max(to_insert.second, it->second); in Insert()
214 ranges_.push_back(to_insert); in Insert()
215 blocks_ += (to_insert.second - to_insert.first); in Insert()
216 to_insert = *it; in Insert()
219 ranges_.push_back(to_insert); in Insert()
220 blocks_ += (to_insert.second - to_insert.first); in Insert()
[all …]
/bootable/recovery/otautil/include/otautil/
Drangeset.h147 void Insert(const Range& to_insert);