Home
last modified time | relevance | path

Searched refs:ax (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/test/java/lang/invoke/
DMethodHandlesTest.java161 Object[] ax = (Object[]) x; in deepToString() local
162 ax = Arrays.copyOf(ax, ax.length, Object[].class); in deepToString()
163 for (int i = 0; i < ax.length; i++) in deepToString()
164 ax[i] = deepToString(ax[i]); in deepToString()
165 x = Arrays.deepToString(ax); in deepToString()
/libcore/ojluni/src/main/java/java/nio/file/attribute/
DFileTime.java177 long ax = Math.abs(secs); in toMillis() local
178 if (((ax | 1000) >>> 31 != 0)) { in toMillis()
/libcore/ojluni/src/main/java/java/lang/
DMath.java1172 long ax = Math.abs(x); in multiplyExact() local
1174 if (((ax | ay) >>> 31 != 0)) { in multiplyExact()
/libcore/ojluni/src/main/java/java/math/
DBigDecimal.java5607 long ax = Math.abs(x); in multiply() local
5609 if (((ax | ay) >>> 31 == 0) || (y == 0) || (product / y == x)){ in multiply()