Home | History | Annotate | Download | only in libjpeg-turbo

Lines Matching full:termchar

42 read_text_integer (FILE *file, long *result, int *termchar)
44 /* Reads one trailing character after the integer; returns it in termchar */
53 *termchar = ch;
59 *termchar = ch;
71 *termchar = ch;
94 int tblno, i, termchar;
104 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
112 if (! read_text_integer(fp, &val, &termchar)) {
129 if (termchar != EOF) {
143 read_scan_integer (FILE *file, long *result, int *termchar)
144 /* Variant of read_text_integer that always looks for a non-space termchar;
150 if (! read_text_integer(file, result, termchar))
152 ch = *termchar;
166 *termchar = ch;
190 int scanno, ncomps, termchar;
203 while (read_scan_integer(fp, &val, &termchar)) {
211 while (termchar == ' ') {
218 if (! read_scan_integer(fp, &val, &termchar))
224 if (termchar == ':') {
225 if (! read_scan_integer(fp, &val, &termchar) || termchar != ' ')
228 if (! read_scan_integer(fp, &val, &termchar) || termchar != ' ')
231 if (! read_scan_integer(fp, &val, &termchar) || termchar != ' ')
234 if (! read_scan_integer(fp, &val, &termchar))
244 if (termchar != ';' && termchar != EOF) {
253 if (termchar != EOF) {