Home | History | Annotate | Download | only in instr

Lines Matching defs:low

855                         //final int low = getI4 (code, scan + 4);
856 final int low = (code [++ scan] << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & code [++ scan]) << 8) | (0xFF & code [++ scan]);
861 final int [] targets = new int [high - low + 2];
864 for (int index = low; index <= high; ++ index)
868 targets [index - low + 1] = ip + ov;
873 branches.put (ip, new TABLESWITCH (low, high, targets));
1731 TABLESWITCH (final int low, final int high, final int [] targets /* first one is default */)
1734 m_low = low;
1755 // low, high:
1756 final int low = m_low;
1757 out.write4 (low >>> 24, // byte1
1758 low >>> 16, // byte2
1759 low >>> 8, // byte3
1760 low); // byte4
2081 int low = 0, high = values.length - 1;
2083 // assertion: lb is in [low, high]
2085 while (low <= high)
2087 final int m = (low + high) >> 1;
2093 low = m + 1;