Home
last modified time | relevance | path

Searched refs:vectorizedHashCode (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/util/Arrays/
DHashCode.java55 …Method vectorizedHashCode = arraysSupport.getDeclaredMethod("vectorizedHashCode", Object.class, in… in main() local
56 vectorizedHashCode.setAccessible(true); in main()
85 …hashCode = (int) vectorizedHashCode.invoke(null, extraZeroes, 17, i, 1, /* ArraysSupport.T_BYTE */… in main()
/libcore/ojluni/src/main/java/jdk/internal/util/
DArraysSupport.java199 public static int vectorizedHashCode(Object array, int fromIndex, int length, int initialValue, in vectorizedHashCode() method in ArraysSupport
/libcore/ojluni/src/main/java/java/util/
DArrays.java4737 default -> ArraysSupport.vectorizedHashCode(a, 0, a.length, 1, ArraysSupport.T_INT); in hashCode()
4764 default -> ArraysSupport.vectorizedHashCode(a, 0, a.length, 1, ArraysSupport.T_SHORT); in hashCode()
4791 default -> ArraysSupport.vectorizedHashCode(a, 0, a.length, 1, ArraysSupport.T_CHAR);
4818 default -> ArraysSupport.vectorizedHashCode(a, 0, a.length, 1, ArraysSupport.T_BYTE);