Searched refs:dataCE (Results 1 - 5 of 5) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dcollation.cpp120 Collation::getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE) { argument
121 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00
122 int32_t lower32 = (int32_t)dataCE; // base code point b & step s: bbbbbbss (bit 7: isCompressible)
H A Dcollationdata.h97 int64_t dataCE = ces[Collation::indexFromCE32(ce32)]; local
98 return Collation::makeCE(Collation::getThreeBytePrimaryForOffsetData(c, dataCE));
H A Dcollation.h478 static uint32_t getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE);
H A Dcollationsets.cpp155 int64_t dataCE = baseData->ces[Collation::indexFromCE32(baseCE32)]; local
156 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE);
H A Dcollationdatabuilder.cpp354 int64_t dataCE = ((int64_t)primary << 32) | (start << 8) | step; local
355 if(isCompressiblePrimary(primary)) { dataCE |= 0x80; }
356 int32_t index = addCE(dataCE, errorCode);
395 int64_t dataCE = fromBase ? base->ces[i] : ce64s.elementAti(i); local
396 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE);

Completed in 123 milliseconds