Searched refs:tmpValue (Results 1 - 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/sun/net/util/ | ||
H A D | IPAddressUtil.java | 45 long tmpValue = 0; 81 if (newOctet || tmpValue < 0 || tmpValue > 0xff || currByte == 3) { 84 res[currByte++] = (byte) (tmpValue & 0xff); 85 tmpValue = 0; 92 tmpValue *= 10; 93 tmpValue += digit; 97 if (newOctet || tmpValue < 0 || tmpValue >= (1L << ((4 - currByte) * 8))) { 104 res[0] = (byte) ((tmpValue >> 2 [all...] |
/libcore/ojluni/src/main/java/java/util/stream/ | ||
H A D | StreamSpliterators.java | 1133 int tmpValue; field in class:StreamSpliterators.UnorderedSliceSpliterator.OfInt 1145 tmpValue = value; 1150 action.accept(tmpValue); 1168 long tmpValue; field in class:StreamSpliterators.UnorderedSliceSpliterator.OfLong 1180 tmpValue = value; 1185 action.accept(tmpValue); 1203 double tmpValue; field in class:StreamSpliterators.UnorderedSliceSpliterator.OfDouble 1215 tmpValue = value; 1220 action.accept(tmpValue); |
Completed in 2347 milliseconds