Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Dstringtriebuilder.cpp108 int32_t maxLinearMatchLength=getMaxLinearMatchLength(); in writeNode() local
109 while(length>maxLinearMatchLength) { in writeNode()
110 lastUnitIndex-=maxLinearMatchLength; in writeNode()
111 length-=maxLinearMatchLength; in writeNode()
112 writeElementUnits(start, lastUnitIndex, maxLinearMatchLength); in writeNode()
113 write(getMinLinearMatch()+maxLinearMatchLength-1); in writeNode()
232 int32_t maxLinearMatchLength=getMaxLinearMatchLength(); in makeNode() local
233 while(length>maxLinearMatchLength) { in makeNode()
234 lastUnitIndex-=maxLinearMatchLength; in makeNode()
235 length-=maxLinearMatchLength; in makeNode()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/util/
DStringTrieBuilder.java450 int maxLinearMatchLength=builder.getMaxLinearMatchLength(); in register() local
451 while(length>maxLinearMatchLength) { in register()
452 int nextOffset=stringOffset+length-maxLinearMatchLength; in register()
453 length-=maxLinearMatchLength; in register()
455 new LinearMatchNode(strings, nextOffset, maxLinearMatchLength, next); in register()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DStringTrieBuilder.java452 int maxLinearMatchLength=builder.getMaxLinearMatchLength(); in register() local
453 while(length>maxLinearMatchLength) { in register()
454 int nextOffset=stringOffset+length-maxLinearMatchLength; in register()
455 length-=maxLinearMatchLength; in register()
457 new LinearMatchNode(strings, nextOffset, maxLinearMatchLength, next); in register()