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

  /external/icu4c/common/
normalizer2impl.cpp 550 uint16_t firstUnit=*mapping;
551 int32_t length=firstUnit&MAPPING_LENGTH_MASK;
553 trailCC=(uint8_t)(firstUnit>>8);
554 if(firstUnit&MAPPING_HAS_CCC_LCCC_WORD) {
615 uint16_t firstUnit=*mapping;
616 int32_t mLength=firstUnit&MAPPING_LENGTH_MASK; // length of normal mapping
617 if(firstUnit&MAPPING_HAS_RAW_MAPPING) {
618 // Read the raw mapping from before the firstUnit and before the optional ccc/lccc word.
620 const uint16_t *rawMapping=mapping-((firstUnit>>7)&1)-1;
684 uint16_t firstUnit=*mapping
    [all...]
  /external/icu4c/tools/gennorm2/
n2builder.cpp 706 int32_t firstUnit=length|(trailCC<<8);
739 firstUnit|=Normalizer2Impl::MAPPING_HAS_RAW_MAPPING;
745 firstUnit|=Normalizer2Impl::MAPPING_HAS_CCC_LCCC_WORD;
748 firstUnit|=Normalizer2Impl::MAPPING_NO_COMP_BOUNDARY_AFTER;
750 dataString.append((UChar)firstUnit);
774 int32_t firstUnit, secondUnit, thirdUnit;
777 firstUnit=pair.trail<<1;
781 firstUnit=(pair.trail<<1)|Normalizer2Impl::COMP_1_TRIPLE;
786 firstUnit=(Normalizer2Impl::COMP_1_TRAIL_LIMIT+
795 firstUnit|=Normalizer2Impl::COMP_1_LAST_TUPLE
    [all...]

Completed in 43 milliseconds