Lines Matching refs:nfc
630 find_nfc_index(const struct reindex* nfc, Py_UCS4 code)
633 for (index = 0; nfc[index].start; index++) {
634 unsigned int start = nfc[index].start;
637 if (code <= start + nfc[index].count) {
639 return nfc[index].index + delta;
801 is_normalized_quickcheck(PyObject *self, PyObject *input, bool nfc, bool k,
819 int quickcheck_shift = (nfc ? 4 : 0) + (k ? 2 : 0);
880 bool nfc = false;
888 nfc = true;
891 nfc = true;
895 /* matches default values for `nfc` and `k` */
905 m = is_normalized_quickcheck(self, input, nfc, k, false);
908 cmp = (nfc ? nfc_nfkc : nfd_nfkd)(self, input, k);