Lines Matching refs:bytes
534 int l, cw, fw, bytes; in fmt_str() local
556 bytes = pct - fmt; in fmt_str()
557 strncpy(tbuf, fmt, bytes); in fmt_str()
558 strncpy(tbuf+bytes, "%", 1); in fmt_str()
559 strncpy(tbuf+bytes+1, fmt+bytes, 1); in fmt_str()
560 bytes += 2; in fmt_str()
561 tbuf[bytes] = 0; in fmt_str()
565 tbuf+bytes-3); in fmt_str()
572 bytes = pct - fmt + fw; in fmt_str()
573 strncpy(tbuf, fmt, bytes); in fmt_str()
574 tbuf[bytes] = 0; in fmt_str()
578 bytes = pct - fmt - fw; in fmt_str()
579 strncpy(tbuf, fmt, bytes); in fmt_str()
580 tbuf[bytes] = 0; in fmt_str()
582 bytes = pct - fmt - fw - 2; in fmt_str()
583 strncpy(tbuf, fmt, bytes); in fmt_str()
584 tbuf[bytes] = 'l'; in fmt_str()
585 strncpy(tbuf+bytes+1, fmt+bytes, 2); in fmt_str()
586 tbuf[bytes+1+2] = 0; in fmt_str()