Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Dstringtriebuilder.cpp106 int32_t maxLinearMatchLength=getMaxLinearMatchLength(); in writeNode() local
107 while(length>maxLinearMatchLength) { in writeNode()
108 lastUnitIndex-=maxLinearMatchLength; in writeNode()
109 length-=maxLinearMatchLength; in writeNode()
110 writeElementUnits(start, lastUnitIndex, maxLinearMatchLength); in writeNode()
111 write(getMinLinearMatch()+maxLinearMatchLength-1); in writeNode()
230 int32_t maxLinearMatchLength=getMaxLinearMatchLength(); in makeNode() local
231 while(length>maxLinearMatchLength) { in makeNode()
232 lastUnitIndex-=maxLinearMatchLength; in makeNode()
233 length-=maxLinearMatchLength; in makeNode()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/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/android_icu4j/src/main/java/android/icu/util/
DStringTrieBuilder.java448 int maxLinearMatchLength=builder.getMaxLinearMatchLength(); in register() local
449 while(length>maxLinearMatchLength) { in register()
450 int nextOffset=stringOffset+length-maxLinearMatchLength; in register()
451 length-=maxLinearMatchLength; in register()
453 new LinearMatchNode(strings, nextOffset, maxLinearMatchLength, next); in register()