Home | History | Annotate | Download | only in posix

Lines Matching defs:bytes

21     -s	Size in bytes per command line
50 long entries, bytes;
54 // If out==NULL count TT.bytes and TT.entries, stopping at max.
83 if (++TT.bytes >= TT.max_bytes && TT.max_bytes) return save;
98 TT.bytes += strlen(data)+1;
99 if (TT.max_bytes && TT.bytes >= TT.max_bytes) return data;
112 int entries, bytes, done = 0, status;
125 for (entries = 0, bytes = -1; entries < toys.optc; entries++, bytes++)
126 bytes += strlen(toys.optargs[entries]);
131 TT.bytes = bytes;
167 TT.bytes = bytes;