Searched refs:test_intersect (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/crosvm/resources/src/ |
H A D | address_range.rs | 301 fn test_intersect(a: (u64, u64), b: (u64, u64), answer: (u64, u64)) { in test_intersect() function 322 test_intersect((0, 5), (0, 5), (0, 5)); in intersect() 323 test_intersect((0, 5), (0, 3), (0, 3)); in intersect() 324 test_intersect((0, 5), (3, 5), (3, 5)); in intersect() 325 test_intersect((0, 5), (5, 5), (5, 5)); in intersect() 326 test_intersect((0, 5), (4, 9), (4, 5)); in intersect() 327 test_intersect((0, u64::MAX), (3, 5), (3, 5)); in intersect() 328 test_intersect((10, 20), (5, 15), (10, 15)); in intersect()
|
/aosp_15_r20/build/make/tools/releasetools/ |
H A D | test_rangelib.py | 29 def test_intersect(self): member in RangeSetTest
|