/external/icu/icu4c/source/common/ |
D | bytestrie.cpp | 49 BytesTrie::jumpByDelta(const uint8_t *pos) { in jumpByDelta() function in BytesTrie 92 pos=jumpByDelta(pos); in branchNext() 320 … if(NULL==findUniqueValueFromBranch(jumpByDelta(pos), length>>1, haveUniqueValue, uniqueValue)) { in findUniqueValueFromBranch() 424 getNextBranchBytes(jumpByDelta(pos), length>>1, out); in getNextBranchBytes()
|
D | ucharstrie.cpp | 73 pos=jumpByDelta(pos); in branchNext() 290 … if(NULL==findUniqueValueFromBranch(jumpByDelta(pos), length>>1, haveUniqueValue, uniqueValue)) { in findUniqueValueFromBranch() 403 getNextBranchUChars(jumpByDelta(pos), length>>1, out); in getNextBranchUChars()
|
D | ucharstrieiterator.cpp | 194 pos=jumpByDelta(pos); in branchNext()
|
D | bytestrieiterator.cpp | 193 pos=jumpByDelta(pos); in branchNext()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | BytesTrie.java | 639 pos=jumpByDelta(bytes_, pos); in branchNext() 718 private static int jumpByDelta(byte[] bytes, int pos) { in jumpByDelta() method 765 pos=jumpByDelta(bytes_, pos); in branchNext() 864 … uniqueValue=findUniqueValueFromBranch(bytes, jumpByDelta(bytes, pos), length>>1, uniqueValue); 938 getNextBranchBytes(bytes, jumpByDelta(bytes, pos), length>>1, out); in getNextBranchBytes()
|
D | CharsTrie.java | 582 pos=jumpByDelta(chars_, pos); in branchNext() 680 private static int jumpByDelta(CharSequence chars, int pos) { in jumpByDelta() method in CharsTrie 719 pos=jumpByDelta(chars_, pos); in branchNext() 809 … uniqueValue=findUniqueValueFromBranch(chars, jumpByDelta(chars, pos), length>>1, uniqueValue); in findUniqueValueFromBranch() 892 getNextBranchChars(chars, jumpByDelta(chars, pos), length>>1, out); in getNextBranchChars()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | BytesTrie.java | 670 pos=jumpByDelta(bytes_, pos); in branchNext() 749 private static int jumpByDelta(byte[] bytes, int pos) { in jumpByDelta() method 796 pos=jumpByDelta(bytes_, pos); in branchNext() 895 … uniqueValue=findUniqueValueFromBranch(bytes, jumpByDelta(bytes, pos), length>>1, uniqueValue); 969 getNextBranchBytes(bytes, jumpByDelta(bytes, pos), length>>1, out); in getNextBranchBytes()
|
D | CharsTrie.java | 605 pos=jumpByDelta(chars_, pos); in branchNext() 703 private static int jumpByDelta(CharSequence chars, int pos) { in jumpByDelta() method in CharsTrie 742 pos=jumpByDelta(chars_, pos); in branchNext() 832 … uniqueValue=findUniqueValueFromBranch(chars, jumpByDelta(chars, pos), length>>1, uniqueValue); in findUniqueValueFromBranch() 915 getNextBranchChars(chars, jumpByDelta(chars, pos), length>>1, out); in getNextBranchChars()
|
/external/icu/icu4c/source/common/unicode/ |
D | bytestrie.h | 386 static const uint8_t *jumpByDelta(const uint8_t *pos);
|
D | ucharstrie.h | 434 static inline const char16_t *jumpByDelta(const char16_t *pos) { in jumpByDelta() function
|