Home | History | Annotate | Download | only in util

Lines Matching defs:second

150         int first = 0, second;
376 BigInteger second = big.subtract(BigInteger.valueOf(80));
377 if (second.compareTo(BigInteger.valueOf(Integer.MAX_VALUE)) == 1) {
380 result[which++] = second.intValue();
601 * 4. if the first is 0 or 1, the second must be <40
643 private static void checkSecondComponent(int first, int second) throws IOException {
644 if (second < 0 || first != 2 && second > 39) {
646 "Second oid component is invalid ");
649 private static void checkSecondComponent(int first, BigInteger second) throws IOException {
650 if (second.signum() == -1 ||
652 second.compareTo(BigInteger.valueOf(39)) == 1) {
654 "Second oid component is invalid ");