Lines Matching defs:cc
535 short cc;
576 cc = HYPERVISOR_console_io(CONSOLEIO_read, 16, (char *)buf);
583 cc = prod - cons;
586 if (cc <= 0) {
603 for (i = 0; i < cc; i++) {
639 "xencons%d_rxint: %d char(s) in queue.\n", instance, cc);
640 if (!(bp = allocb(cc, BPRI_MED))) {
668 } while (--cc);
764 int cc;
811 while (bp != NULL && (cc = bp->b_wptr - bp->b_rptr) == 0) {
835 cc = min(blen, space);
836 bcopy(bp->b_rptr, &xencons_wbuf[len], cc);
837 bp->b_rptr += cc;
838 if (cc == blen) {
843 space -= cc;
844 len += cc;