Lines Matching refs:fcd16
398 uint16_t fcd16 = nfcImpl.getFCD16(c); in nextSegment() local
399 uint8_t leadCC = (uint8_t)(fcd16 >> 8); in nextSegment()
406 … if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in nextSegment()
424 prevCC = (uint8_t)fcd16; in nextSegment()
477 uint16_t fcd16 = nfcImpl.getFCD16(c); in previousSegment() local
478 uint8_t trailCC = (uint8_t)fcd16; in previousSegment()
486 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in previousSegment()
488 while(fcd16 > 0xff && pos != 0) { in previousSegment()
491 fcd16 = nfcImpl.getFCD16(c); in previousSegment()
492 if(fcd16 == 0) { in previousSegment()
506 nextCC = (uint8_t)(fcd16 >> 8); in previousSegment()