Searched refs:start1 (Results 1 – 1 of 1) sorted by relevance
100 static inline bool bio_does_overlap(uint64_t start1, uint64_t len1, in bio_does_overlap() argument102 uint64_t end1 = start1 + len1; in bio_does_overlap()105 DEBUG_ASSERT(end1 >= start1); in bio_does_overlap()108 return (((start1 >= start2) && (start1 < end2)) || in bio_does_overlap()109 ((start2 >= start1) && (start2 < end1))); in bio_does_overlap()
Completed in 2 milliseconds