Lines Matching refs:fcd16
317 uint16_t fcd16 = nfcImpl.getFCD16(c); in nextSegment() local
318 uint8_t leadCC = (uint8_t)(fcd16 >> 8); in nextSegment()
325 … if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in nextSegment()
343 prevCC = (uint8_t)fcd16; in nextSegment()
398 uint16_t fcd16 = nfcImpl.getFCD16(c); in previousSegment() local
399 uint8_t trailCC = (uint8_t)fcd16; in previousSegment()
407 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in previousSegment()
409 while(fcd16 > 0xff) { in previousSegment()
412 fcd16 = nfcImpl.getFCD16(c); in previousSegment()
413 if(fcd16 == 0) { in previousSegment()
427 nextCC = (uint8_t)(fcd16 >> 8); in previousSegment()