Searched refs:intersection_end (Results 1 – 3 of 3) sorted by relevance
/external/compiler-rt/lib/lsan/ |
D | lsan_common.cc | 283 uptr intersection_end = Min(end, root_end); in ProcessRootRegion() local 284 if (intersection_begin >= intersection_end) continue; in ProcessRootRegion() 290 ScanRangeForPointers(intersection_begin, intersection_end, frontier, in ProcessRootRegion()
|
/external/llvm-project/compiler-rt/lib/lsan/ |
D | lsan_common.cpp | 342 uptr intersection_end = Min(region_end, root_region.begin + root_region.size); in ScanRootRegion() local 343 if (intersection_begin >= intersection_end) return; in ScanRootRegion() 349 ScanRangeForPointers(intersection_begin, intersection_end, frontier, "ROOT", in ScanRootRegion()
|
/external/mesa3d/src/amd/compiler/ |
D | aco_lower_to_hw_instr.cpp | 975 int intersection_end = MAX2(b_start + b_size - a_start, 0); in get_intersection_mask() local 976 if (intersection_start >= a_size || intersection_end == 0) in get_intersection_mask() 980 return u_bit_consecutive(intersection_start, intersection_end - intersection_start) & mask; in get_intersection_mask()
|