Lines Matching refs:ccc
54 short int ccc;
678 u8c->ccc = STOPPER;
716 * Characters are emitted if they match the current CCC in u8c->ccc.
717 * Hitting end-of-string while u8c->ccc == STOPPER means we're done,
731 * u8c->ccc == -1 -> this is the first scan of a repeating scan.
736 int ccc;
748 if (u8c->ccc == STOPPER)
751 ccc = STOPPER;
772 ccc = LEAF_CCC(leaf);
775 ccc = STOPPER;
776 } else if (ccc == DECOMPOSE) {
782 if (u8c->ccc == STOPPER)
784 ccc = STOPPER;
791 ccc = LEAF_CCC(leaf);
798 if (ccc != STOPPER && u8c->ccc < ccc && ccc < u8c->nccc)
799 u8c->nccc = ccc;
805 if (ccc == u8c->ccc) {
819 u8c->ccc = MINCCC - 1;
820 u8c->nccc = ccc;
827 } else if (ccc != STOPPER) {
828 /* Not a stopper, and not the ccc we're emitting. */
833 /* At a stopper, restart for next ccc. */
834 u8c->ccc = u8c->nccc;
841 u8c->ccc = STOPPER;