Searched refs:blockValue (Results 1 - 5 of 5) sorted by relevance
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | MutableCodePointTrie.java | 813 int findAllSameBlock(int[] data, int blockValue) { in findAllSameBlock() argument 814 int hashCode = makeHashCode(blockValue); in findAllSameBlock() 815 int entryIndex = findEntry(data, blockValue, hashCode); in findAllSameBlock() 841 private int makeHashCode(int blockValue) { in makeHashCode() argument 842 int hashCode = blockValue; in makeHashCode() 844 hashCode = 37 * hashCode + blockValue; in makeHashCode() 880 private int findEntry(int[] data, int blockValue, int hashCode) { in findEntry() argument 890 if (allValuesSameAs(data, dataIndex, blockLength, blockValue)) { in findEntry()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | MutableCodePointTrie.java | 805 int findAllSameBlock(int[] data, int blockValue) { in findAllSameBlock() argument 806 int hashCode = makeHashCode(blockValue); in findAllSameBlock() 807 int entryIndex = findEntry(data, blockValue, hashCode); in findAllSameBlock() 833 private int makeHashCode(int blockValue) { in makeHashCode() argument 834 int hashCode = blockValue; in makeHashCode() 836 hashCode = 37 * hashCode + blockValue; in makeHashCode() 872 private int findEntry(int[] data, int blockValue, int hashCode) { in findEntry() argument 882 if (allValuesSameAs(data, dataIndex, blockLength, blockValue)) { in findEntry()
|
/third_party/icu/icu4c/source/common/ |
H A D | umutablecptrie.cpp | 833 int32_t findAllSameBlock(const uint32_t *data, uint32_t blockValue) const { in findAllSameBlock() 834 uint32_t hashCode = makeHashCode(blockValue); in findAllSameBlock() 835 int32_t entryIndex = findEntry(data, blockValue, hashCode); in findAllSameBlock() 854 uint32_t makeHashCode(uint32_t blockValue) const { in makeHashCode() 855 uint32_t hashCode = blockValue; in makeHashCode() 857 hashCode = 37 * hashCode + blockValue; in makeHashCode() 891 int32_t findEntry(const uint32_t *data, uint32_t blockValue, uint32_t hashCode) const { in findEntry() argument 901 if (allValuesSameAs(data + dataIndex, blockLength, blockValue)) { in findEntry()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | umutablecptrie.cpp | 833 int32_t findAllSameBlock(const uint32_t *data, uint32_t blockValue) const { in findAllSameBlock() 834 uint32_t hashCode = makeHashCode(blockValue); in findAllSameBlock() 835 int32_t entryIndex = findEntry(data, blockValue, hashCode); in findAllSameBlock() 854 uint32_t makeHashCode(uint32_t blockValue) const { in makeHashCode() 855 uint32_t hashCode = blockValue; in makeHashCode() 857 hashCode = 37 * hashCode + blockValue; in makeHashCode() 891 int32_t findEntry(const uint32_t *data, uint32_t blockValue, uint32_t hashCode) const { in findEntry() argument 901 if (allValuesSameAs(data + dataIndex, blockLength, blockValue)) { in findEntry()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | umutablecptrie.cpp | 833 int32_t findAllSameBlock(const uint32_t *data, uint32_t blockValue) const { in findAllSameBlock() 834 uint32_t hashCode = makeHashCode(blockValue); in findAllSameBlock() 835 int32_t entryIndex = findEntry(data, blockValue, hashCode); in findAllSameBlock() 854 uint32_t makeHashCode(uint32_t blockValue) const { in makeHashCode() 855 uint32_t hashCode = blockValue; in makeHashCode() 857 hashCode = 37 * hashCode + blockValue; in makeHashCode() 891 int32_t findEntry(const uint32_t *data, uint32_t blockValue, uint32_t hashCode) const { in findEntry() argument 901 if (allValuesSameAs(data + dataIndex, blockLength, blockValue)) { in findEntry()
|
Completed in 14 milliseconds