Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dload_store_analysis.cc29 static bool CanIntegerRangesOverlap(int64_t l1, int64_t h1, int64_t l2, int64_t h2) { in CanIntegerRangesOverlap() argument
30 return std::max(l1, l2) <= std::min(h1, h2); in CanIntegerRangesOverlap()
60 int64_t h2 = l2 + (vector_length2 - 1); in CanBinaryOpAndIndexAlias() local
61 return CanIntegerRangesOverlap(l1, h1, l2, h2); in CanBinaryOpAndIndexAlias()
91 int64_t h2 = l2 + (vector_length2 - 1); in CanBinaryOpsAlias() local
92 return CanIntegerRangesOverlap(l1, h1, l2, h2); in CanBinaryOpsAlias()
116 int64_t h2 = l2 + (vector_length2 - 1); in CanArrayElementsAlias() local
117 return CanIntegerRangesOverlap(l1, h1, l2, h2); in CanArrayElementsAlias()
/art/test/561-shared-slowpaths/src/
DMain.java27 private static void init(int[] x, int [] y, int l1, int h1, int l2, int h2) { in init() argument
31 for (int i = l2; i < h2; i++) { in init()