Home | History | Annotate | Download | only in bit

Lines Matching refs:amt

91         ssize_t amt = read(fd, &byte, 1);
92 if (amt == 0) {
95 } else if (amt < 0) {
134 ssize_t amt = read(fd, buf+pos, size-pos);
135 if (amt == 0) {
141 } else if (amt < 0) {
147 pos += amt;
185 ssize_t amt = size < scratchSize ? size : scratchSize;
186 fprintf(stderr, "skipping %lu/%ld bytes\n", size, amt);
187 amt = read(fd, scratch, amt);
188 if (amt == 0) {
192 } else if (amt < 0) {
196 size -= amt;