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

  /external/bsdiff/
bspatch_unittest.cc 25 TEST_F(BspatchTest, IsOverlapping) {
28 EXPECT_FALSE(IsOverlapping(old_filename, "does-not-exist", {}, {}));
29 EXPECT_FALSE(IsOverlapping(old_filename, new_filename, {}, {}));
32 EXPECT_TRUE(IsOverlapping(old_filename, new_filename, {}, {}));
33 EXPECT_TRUE(IsOverlapping(old_filename, old_filename, {}, {}));
34 EXPECT_FALSE(IsOverlapping(old_filename, old_filename, {{0, 1}}, {{1, 1}}));
35 EXPECT_FALSE(IsOverlapping(old_filename, old_filename, {{2, 1}}, {{1, 1}}));
36 EXPECT_TRUE(IsOverlapping(old_filename, old_filename, {{0, 1}}, {{0, 1}}));
37 EXPECT_TRUE(IsOverlapping(old_filename, old_filename, {{0, 4}}, {{2, 1}}));
38 EXPECT_TRUE(IsOverlapping(old_filename, old_filename, {{1, 1}}, {{0, 2}}))
    [all...]
bspatch.cc 113 bool IsOverlapping(const char* old_filename,
217 if (IsOverlapping(old_filename, new_filename, parsed_old_extents,
  /external/bsdiff/include/bsdiff/
bspatch.h 51 bool IsOverlapping(const char* old_filename,

Completed in 56 milliseconds