Searched refs:ax (Results 1 – 4 of 4) sorted by relevance
161 Object[] ax = (Object[]) x; in deepToString() local162 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()
177 long ax = Math.abs(secs); in toMillis() local178 if (((ax | 1000) >>> 31 != 0)) { in toMillis()
1172 long ax = Math.abs(x); in multiplyExact() local1174 if (((ax | ay) >>> 31 != 0)) { in multiplyExact()
5607 long ax = Math.abs(x); in multiply() local5609 if (((ax | ay) >>> 31 == 0) || (y == 0) || (product / y == x)){ in multiply()