Home | History | Annotate | Download | only in common

Lines Matching refs:fcd

555  * Get access to the internal FCD trie table to be able to perform
556 * incremental, per-code unit, FCD checks in collation.
559 * Code points at fcdHighStart and above have a zero FCD value.
567 * Get the FCD value for a code unit, with
572 * then some of c's associated supplementary code points have a non-zero FCD value.
583 * Get the FCD value of the next code point (post-increment), with
593 uint16_t fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_U16_SINGLE_LEAD(fcdTrieIndex, c)];
594 if(fcd!=0 && U16_IS_LEAD(c)) {
600 fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_SUPP(fcdTrieIndex, c)];
602 fcd=0;
605 fcd=0;
608 return fcd;
613 * Get the FCD value of the previous code point (pre-decrement), with
623 uint16_t fcd;
625 fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_U16_SINGLE_LEAD(fcdTrieIndex, c)];
632 fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_SUPP(fcdTrieIndex, c)];
634 fcd=0;
637 fcd=0;
640 return fcd;