Lines Matching defs:cc
210 int cc;
528 cc = encrypt_flag ? strlen(dash_x) : 0;
530 cc += strlen(*ap) + 1;
531 cp = args = malloc(cc);
537 length = strlcpy(args, dash_x, cc);
539 cc -= length;
546 length = strlcpy(cp, *ap, cc);
547 assert(length < cc);
549 cc -= length;
552 cc--;
704 cc = read(0, buf, sizeof (buf));
705 if (cc <= 0)
721 wc = desrshwrite(rem, bp, cc);
727 cc -= wc; bp += wc;
728 if (cc == 0)
762 cc = desrshread(rfd2, buf, sizeof (buf));
763 if (cc <= 0) {
767 (void) write(STDERR_FILENO, buf, cc);
773 cc = desrshread(rem, buf, sizeof (buf));
774 if (cc <= 0) {
778 (void) write(STDOUT_FILENO, buf, cc);