Lines Matching defs:ccc
597 u8c->ccc = STOPPER;
635 * Characters are emitted if they match the current CCC in u8c->ccc.
636 * Hitting end-of-string while u8c->ccc == STOPPER means we're done,
650 * u8c->ccc == -1 -> this is the first scan of a repeating scan.
655 int ccc;
667 if (u8c->ccc == STOPPER)
670 ccc = STOPPER;
691 ccc = LEAF_CCC(leaf);
694 ccc = STOPPER;
695 } else if (ccc == DECOMPOSE) {
701 if (u8c->ccc == STOPPER)
703 ccc = STOPPER;
710 ccc = LEAF_CCC(leaf);
717 if (ccc != STOPPER && u8c->ccc < ccc && ccc < u8c->nccc)
718 u8c->nccc = ccc;
724 if (ccc == u8c->ccc) {
738 u8c->ccc = MINCCC - 1;
739 u8c->nccc = ccc;
746 } else if (ccc != STOPPER) {
747 /* Not a stopper, and not the ccc we're emitting. */
752 /* At a stopper, restart for next ccc. */
753 u8c->ccc = u8c->nccc;
760 u8c->ccc = STOPPER;