Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DCollationElementIterator.java352 int secondHalf = getSecondHalf(p, lower32); local
353 if (secondHalf != 0) {
354 otherHalf_ = secondHalf | 0xc0; // continuation CE
412 int secondHalf = getSecondHalf(p, lower32); in previous() local
413 if (secondHalf != 0) { in previous()
422 return secondHalf | 0xc0; // continuation CE in previous()
/external/icu/icu4c/source/i18n/
Dcoleitr.cpp130 uint32_t secondHalf = getSecondHalf(p, lower32); in next() local
131 if (secondHalf != 0) { in next()
132 otherHalf_ = secondHalf | 0xc0; // continuation CE in next()
202 uint32_t secondHalf = getSecondHalf(p, lower32); in previous() local
203 if (secondHalf != 0) { in previous()
212 return secondHalf | 0xc0; // continuation CE in previous()
/external/fonttools/Lib/fontTools/ttLib/tables/
DE_B_D_T_.py533 secondHalf = byteord(curByte) << numBitsCut
534 newByte = (firstHalf | secondHalf) & ((1<<numBits)-1)