Lines Matching defs:threshold
34 * a threshold code value are stored unencoded.
53 static int parse_threshold(const char *str, unsigned long *threshold);
56 parse_threshold(const char *str, unsigned long *threshold)
69 *threshold = strtoul(str, &end_ptr, base);
70 if (errno != 0 || *threshold == 0)
76 process_line(const char *line, int removewide, unsigned long threshold)
88 if (enc >= threshold || (removewide && iswide(enc))) {
101 threshold);
126 unsigned long threshold;
148 if (parse_threshold(*argv, &threshold)) {
149 fprintf(stderr, "Illegal threshold %s\n", *argv);
158 removewide = (threshold <= 0x3200);
187 process_line(line, removewide, threshold);
217 "Usage: bdftruncate [+w|-w] threshold <source.bdf >destination.bdf\n"
226 "(default if threshold <= 0x3200), and option +w keeps them.\n");