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.
82 TT.bytes += sizeof(char *);
85 if (++TT.bytes >= TT.max_bytes && TT.max_bytes) return save;
100 TT.bytes += sizeof(char *)+strlen(data)+1;
101 if (TT.max_bytes && TT.bytes >= TT.max_bytes) return data;
113 int entries, bytes, done = 0, status;
119 // with -s. POSIX also says we have to reserve 2048 bytes "to guarantee
136 for (entries = 0, bytes = -1; entries < toys.optc; entries++, bytes++)
137 bytes += strlen(toys.optargs[entries]);
142 TT.bytes = bytes;
178 TT.bytes = bytes;