Home
last modified time | relevance | path

Searched refs:h1 (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()
55 int64_t h1 = l1 + (vector_length1 - 1); in CanBinaryOpAndIndexAlias() local
57 return CanIntegerRangesOverlap(l1, h1, l2, h2); in CanBinaryOpAndIndexAlias()
86 int64_t h1 = l1 + (vector_length1 - 1); in CanBinaryOpsAlias() local
88 return CanIntegerRangesOverlap(l1, h1, l2, h2); in CanBinaryOpsAlias()
111 int64_t h1 = l1 + (vector_length1 - 1); in CanArrayElementsAlias() local
113 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
28 for (int i = l1; i < h1; i++) { in init()