/third_party/flutter/skia/third_party/externals/icu/patches/ |
D | uniset_perf.patch | 203 + int32_t findAllSameBlock(const uint32_t *data, uint32_t blockValue) const { 204 + uint32_t hashCode = makeHashCode(blockValue); 205 + int32_t entryIndex = findEntry(data, blockValue, hashCode); 224 + uint32_t makeHashCode(uint32_t blockValue) const { 225 + uint32_t hashCode = blockValue; 227 + hashCode = 37 * hashCode + blockValue; 261 + int32_t findEntry(const uint32_t *data, uint32_t blockValue, uint32_t hashCode) const { 271 + if (allValuesSameAs(data + dataIndex, blockLength, blockValue)) {
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
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/ |
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/node/deps/icu-small/source/common/ |
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/ |
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/flutter/skia/third_party/externals/icu/source/common/ |
D | umutablecptrie.cpp | 828 int32_t findAllSameBlock(const uint32_t *data, uint32_t blockValue) const { in findAllSameBlock() 829 uint32_t hashCode = makeHashCode(blockValue); in findAllSameBlock() 830 int32_t entryIndex = findEntry(data, blockValue, hashCode); in findAllSameBlock() 849 uint32_t makeHashCode(uint32_t blockValue) const { in makeHashCode() 850 uint32_t hashCode = blockValue; in makeHashCode() 852 hashCode = 37 * hashCode + blockValue; in makeHashCode() 886 int32_t findEntry(const uint32_t *data, uint32_t blockValue, uint32_t hashCode) const { in findEntry() argument 896 if (allValuesSameAs(data + dataIndex, blockLength, blockValue)) { in findEntry()
|
/third_party/icu/icu4c/source/common/ |
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()
|