Searched refs:oldMinValue (Results 1 – 2 of 2) sorted by relevance
1984 private long getMinForPositiveValue(long oldMinValue, long value) { in getMinForPositiveValue() argument1985 if (value < 1) return oldMinValue; in getMinForPositiveValue()1986 return Math.min(oldMinValue, value); in getMinForPositiveValue()1989 private int getMinForPositiveValue(int oldMinValue, int value) { in getMinForPositiveValue() argument1990 return (int) getMinForPositiveValue((long) oldMinValue, (long) value); in getMinForPositiveValue()
2418 private long getMinForPositiveValue(long oldMinValue, long value) { in getMinForPositiveValue() argument2419 if (value < 1) return oldMinValue; in getMinForPositiveValue()2420 return Math.min(oldMinValue, value); in getMinForPositiveValue()2423 private int getMinForPositiveValue(int oldMinValue, int value) { in getMinForPositiveValue() argument2424 return (int) getMinForPositiveValue((long) oldMinValue, (long) value); in getMinForPositiveValue()