Searched refs:ExtentRanges (Results 1 - 8 of 8) sorted by relevance

/system/update_engine/payload_generator/
H A Dextent_ranges.h28 // An ExtentRanges object represents an unordered collection of extents (and
30 // blocks (think: set addition or set subtraction). Note that ExtentRanges
45 class ExtentRanges { class in namespace:chromeos_update_engine
49 ExtentRanges() : blocks_(0) {} function in class:chromeos_update_engine::ExtentRanges
60 void AddRanges(const ExtentRanges& ranges);
61 void SubtractRanges(const ExtentRanges& ranges);
87 // ExtentRanges set. Note that the order of the blocks in |extents| is preserved
88 // omitting blocks present in the ExtentRanges |ranges|.
90 const ExtentRanges& ranges);
H A Dextent_ranges.cc33 bool ExtentRanges::ExtentsOverlapOrTouch(const Extent& a, const Extent& b) {
45 bool ExtentRanges::ExtentsOverlap(const Extent& a, const Extent& b) {
57 void ExtentRanges::AddBlock(uint64_t block) {
61 void ExtentRanges::SubtractBlock(uint64_t block) {
78 void ExtentRanges::AddExtent(Extent extent) {
105 ExtentRanges::ExtentSet SubtractOverlappingExtents(const Extent& base,
107 ExtentRanges::ExtentSet ret;
121 void ExtentRanges::SubtractExtent(const Extent& extent) {
153 void ExtentRanges::AddRanges(const ExtentRanges
[all...]
H A Dextent_ranges_unittest.cc34 void ExpectRangeEq(const ExtentRanges& ranges,
44 const ExtentRanges::ExtentSet& result = ranges.extent_set();
45 ExtentRanges::ExtentSet::const_iterator it = result.begin();
61 EXPECT_TRUE(ExtentRanges::ExtentsOverlapOrTouch(ExtentForRange(a_start,
65 EXPECT_TRUE(ExtentRanges::ExtentsOverlapOrTouch(ExtentForRange(b_start,
73 EXPECT_FALSE(ExtentRanges::ExtentsOverlapOrTouch(ExtentForRange(a_start,
77 EXPECT_FALSE(ExtentRanges::ExtentsOverlapOrTouch(ExtentForRange(b_start,
81 EXPECT_FALSE(ExtentRanges::ExtentsOverlap(ExtentForRange(a_start,
85 EXPECT_FALSE(ExtentRanges::ExtentsOverlap(ExtentForRange(b_start,
93 EXPECT_TRUE(ExtentRanges
[all...]
H A Ddelta_diff_utils.h70 ExtentRanges* old_visited_blocks,
71 ExtentRanges* new_visited_blocks);
H A Ddelta_diff_utils.cc176 ExtentRanges old_visited_blocks;
177 ExtentRanges new_visited_blocks;
288 ExtentRanges* old_visited_blocks,
289 ExtentRanges* new_visited_blocks) {
H A Dinplace_generator.cc383 ExtentRanges scratch_ranges;
385 typedef vector<pair<Vertex::Index, ExtentRanges>> SupplierVector;
394 ExtentRanges ranges;
422 ranges = ExtentRanges();
H A Dext2_filesystem.cc310 ExtentRanges ranges;
H A Ddelta_diff_utils_unittest.cc160 ExtentRanges old_visited_blocks_;
161 ExtentRanges new_visited_blocks_;
539 ExtentRanges expected_ranges;

Completed in 215 milliseconds