Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTrie2.java369 h = hashByte(h, leadSurrogate? 1: 0); in hashCode()
1028 private static int hashByte(int h, int b) { in hashByte() method in Trie2
1035 h = Trie2.hashByte(h, c & 255); in hashUChar32()
1036 h = Trie2.hashByte(h, (c>>8) & 255); in hashUChar32()
1037 h = Trie2.hashByte(h, c>>16); in hashUChar32()
1042 h = Trie2.hashByte(h, i & 255); in hashInt()
1043 h = Trie2.hashByte(h, (i>>8) & 255); in hashInt()
1044 h = Trie2.hashByte(h, (i>>16) & 255); in hashInt()
1045 h = Trie2.hashByte(h, (i>>24) & 255); in hashInt()