/external/icu/icu4c/source/common/ |
D | bytestrie.cpp | 47 BytesTrie::jumpByDelta(const uint8_t *pos) { in jumpByDelta() function in BytesTrie 90 pos=jumpByDelta(pos); in branchNext() 318 … if(NULL==findUniqueValueFromBranch(jumpByDelta(pos), length>>1, haveUniqueValue, uniqueValue)) { in findUniqueValueFromBranch() 422 getNextBranchBytes(jumpByDelta(pos), length>>1, out); in getNextBranchBytes()
|
D | ucharstrie.cpp | 71 pos=jumpByDelta(pos); in branchNext() 287 … if(NULL==findUniqueValueFromBranch(jumpByDelta(pos), length>>1, haveUniqueValue, uniqueValue)) { in findUniqueValueFromBranch() 400 getNextBranchUChars(jumpByDelta(pos), length>>1, out); in getNextBranchUChars()
|
D | ucharstrieiterator.cpp | 192 pos=jumpByDelta(pos); in branchNext()
|
D | bytestrieiterator.cpp | 188 pos=jumpByDelta(pos); in branchNext()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | BytesTrie.java | 664 pos=jumpByDelta(bytes_, pos); in branchNext() 743 private static int jumpByDelta(byte[] bytes, int pos) { in jumpByDelta() method 790 pos=jumpByDelta(bytes_, pos); in branchNext() 889 … uniqueValue=findUniqueValueFromBranch(bytes, jumpByDelta(bytes, pos), length>>1, uniqueValue); 963 getNextBranchBytes(bytes, jumpByDelta(bytes, pos), length>>1, out); in getNextBranchBytes()
|
D | CharsTrie.java | 599 pos=jumpByDelta(chars_, pos); in branchNext() 697 private static int jumpByDelta(CharSequence chars, int pos) { in jumpByDelta() method in CharsTrie 736 pos=jumpByDelta(chars_, pos); in branchNext() 826 … uniqueValue=findUniqueValueFromBranch(chars, jumpByDelta(chars, pos), length>>1, uniqueValue); in findUniqueValueFromBranch() 909 getNextBranchChars(chars, jumpByDelta(chars, pos), length>>1, out); in getNextBranchChars()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | BytesTrie.java | 629 pos=jumpByDelta(bytes_, pos); in branchNext() 708 private static int jumpByDelta(byte[] bytes, int pos) { in jumpByDelta() method 755 pos=jumpByDelta(bytes_, pos); in branchNext() 854 … uniqueValue=findUniqueValueFromBranch(bytes, jumpByDelta(bytes, pos), length>>1, uniqueValue); 928 getNextBranchBytes(bytes, jumpByDelta(bytes, pos), length>>1, out); in getNextBranchBytes()
|
D | CharsTrie.java | 573 pos=jumpByDelta(chars_, pos); in branchNext() 671 private static int jumpByDelta(CharSequence chars, int pos) { in jumpByDelta() method in CharsTrie 710 pos=jumpByDelta(chars_, pos); in branchNext() 800 … uniqueValue=findUniqueValueFromBranch(chars, jumpByDelta(chars, pos), length>>1, uniqueValue); in findUniqueValueFromBranch() 883 getNextBranchChars(chars, jumpByDelta(chars, pos), length>>1, out); in getNextBranchChars()
|
/external/icu/icu4c/source/common/unicode/ |
D | bytestrie.h | 385 static const uint8_t *jumpByDelta(const uint8_t *pos);
|
D | ucharstrie.h | 432 static inline const UChar *jumpByDelta(const UChar *pos) { in jumpByDelta() function
|