Home
last modified time | relevance | path

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

/external/valgrind/unittest/
Dracecheck_unittest.cc5445 bool TwoRangesIntersect(size_t beg1, size_t end1, size_t beg2, size_t end2) { in TwoRangesIntersect() argument
5446 if (beg1 <= beg2 && end1 > beg2) return true; in TwoRangesIntersect()
5447 if (beg2 <= beg1 && end2 > beg1) return true; in TwoRangesIntersect()
5456 long beg1 = offset1 * size1; in RunTwoThreads() local
5457 long end1 = beg1 + size1; in RunTwoThreads()
5460 bool have_intersection = TwoRangesIntersect(beg1, end1, beg2, end2); in RunTwoThreads()
5464 beg1, end1, beg2, end2, have_intersection ? "have" : "no", MEM); in RunTwoThreads()
5466 char *racey_addr_beg = (char*)MEM + max(beg1, beg2); in RunTwoThreads()
/external/opencv/cvaux/include/
Dcvvidsurv.hpp1203 int beg1,beg2; member