Lines Matching +full:100 +full:w
155 ssize_t r, w; in operate_on_bytes() local
166 return (100); in operate_on_bytes()
171 if ((w = write(out, buf, r)) < 0) { in operate_on_bytes()
183 progress = (file->read * 100 / (file->length > 0 ? in operate_on_bytes()
186 /* If no_overrun, do not return 100% until read >= length */ in operate_on_bytes()
187 if (no_overrun && progress == 100 && file->read < file->length) in operate_on_bytes()
200 ssize_t r, w; in operate_on_lines() local
211 return (100); in operate_on_lines()
217 if ((w = write(out, buf, r)) < 0) { in operate_on_lines()
231 progress = (file->read * 100 / file->length); in operate_on_lines()
233 /* If no_overrun, do not return 100% until read >= length */ in operate_on_lines()
234 if (no_overrun && progress == 100 && file->read < file->length) in operate_on_lines()
383 case 'w': /* `-p' and `-a' widths bump [X]dialog(1) width */ in main()
536 fprintf(stderr, OPTFMT, "-w", in usage()