Lines Matching defs:ccc
433 u8c->ccc = STOPPER;
454 * Characters are emitted if they match the current CCC in u8c->ccc.
455 * Hitting end-of-string while u8c->ccc == STOPPER means we're done,
469 * u8c->ccc == -1 -> this is the first scan of a repeating scan.
474 int ccc;
486 if (u8c->ccc == STOPPER)
489 ccc = STOPPER;
510 ccc = LEAF_CCC(leaf);
514 ccc = STOPPER;
515 } else if (ccc == DECOMPOSE) {
521 if (u8c->ccc == STOPPER)
523 ccc = STOPPER;
530 ccc = LEAF_CCC(leaf);
537 if (ccc != STOPPER && u8c->ccc < ccc && ccc < u8c->nccc)
538 u8c->nccc = ccc;
544 if (ccc == u8c->ccc) {
558 u8c->ccc = MINCCC - 1;
559 u8c->nccc = ccc;
566 } else if (ccc != STOPPER) {
567 /* Not a stopper, and not the ccc we're emitting. */
572 /* At a stopper, restart for next ccc. */
573 u8c->ccc = u8c->nccc;
580 u8c->ccc = STOPPER;