Home | History | Annotate | Download | only in common

Lines Matching refs:fcd

549  * Get access to the internal FCD trie table to be able to perform
550 * incremental, per-code unit, FCD checks in collation.
553 * Code points at fcdHighStart and above have a zero FCD value.
561 * Get the FCD value for a code unit, with
566 * then some of c's associated supplementary code points have a non-zero FCD value.
577 * Get the FCD value of the next code point (post-increment), with
587 uint16_t fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_U16_SINGLE_LEAD(fcdTrieIndex, c)];
588 if(fcd!=0 && U16_IS_LEAD(c)) {
594 fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_SUPP(fcdTrieIndex, c)];
596 fcd=0;
599 fcd=0;
602 return fcd;
607 * Get the FCD value of the previous code point (pre-decrement), with
617 uint16_t fcd;
619 fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_U16_SINGLE_LEAD(fcdTrieIndex, c)];
626 fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_SUPP(fcdTrieIndex, c)];
628 fcd=0;
631 fcd=0;
634 return fcd;