HomeSort by relevance Sort by last modified time
    Searched refs:dataCE (Results 1 - 5 of 5) sorted by null

  /external/icu/icu4c/source/i18n/
collation.cpp 120 Collation::getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE) {
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)
collationdata.h 97 int64_t dataCE = ces[Collation::indexFromCE32(ce32)];
98 return Collation::makeCE(Collation::getThreeBytePrimaryForOffsetData(c, dataCE));
collation.h 478 static uint32_t getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE);
collationsets.cpp 155 int64_t dataCE = baseData->ces[Collation::indexFromCE32(baseCE32)];
156 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE);
collationdatabuilder.cpp 354 int64_t dataCE = ((int64_t)primary << 32) | (start << 8) | step;
355 if(isCompressiblePrimary(primary)) { dataCE |= 0x80; }
356 int32_t index = addCE(dataCE, errorCode);
395 int64_t dataCE = fromBase ? base->ces[i] : ce64s.elementAti(i);
396 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE);
    [all...]

Completed in 53 milliseconds