Lines Matching defs:shgetc
116 #define shgetc(f) (((f)->rpos < (f)->shend) ? *(f)->rpos++ : ffshgetc(f))
148 while (av_isspace((c=shgetc(f))));
151 c = shgetc(f);
154 c = shgetc(f);
156 c = shgetc(f);
177 for (x=0; c-'0'<10U && x<=UINT_MAX/10-1; c=shgetc(f))
179 for (y=x; c-'0'<10U && y<=ULLONG_MAX/10 && 10*y<=ULLONG_MAX-(c-'0'); c=shgetc(f))
184 for (x=0; val[c]<base && x<=UINT_MAX/32; c=shgetc(f))
186 for (y=x; val[c]<base && y<=ULLONG_MAX>>bs; c=shgetc(f))
189 for (x=0; val[c]<base && x<=UINT_MAX/36-1; c=shgetc(f))
191 for (y=x; val[c]<base && y<=ULLONG_MAX/base && base*y<=ULLONG_MAX-val[c]; c=shgetc(f))
195 for (; val[c]<base; c=shgetc(f));
221 c = shgetc(f);
224 c = shgetc(f);
231 for (x=0; c-'0'<10U && x<INT_MAX/10; c = shgetc(f))
233 for (y=x; c-'0'<10U && y<LLONG_MAX/100; c = shgetc(f))
235 for (; c-'0'<10U; c = shgetc(f));
268 for (; c=='0'; c = shgetc(f)) gotdig=1;
271 for (c = shgetc(f); c=='0'; c = shgetc(f)) gotdig=1, lrp--;
275 for (; c-'0'<10U || c=='.'; c = shgetc(f)) {
510 c = shgetc(f);
513 for (; c=='0'; c = shgetc(f))
518 c = shgetc(f);
520 for (rp=0; c=='0'; c = shgetc(f), rp--) gotdig = 1;
523 for (; c-'0'<10U || (c|32)-'a'<6U || c=='.'; c = shgetc(f)) {
635 while (av_isspace((c = shgetc(f))));
639 c = shgetc(f);
643 if (i<7) c = shgetc(f);
652 if (i<2) c = shgetc(f);
654 if (shgetc(f) != '(') {
659 c = shgetc(f);
683 c = shgetc(f);
749 while (av_isspace(shgetc(f)));
758 while (av_isspace((c=shgetc(f))));
760 c = shgetc(f);
840 while (av_isspace(shgetc(f)));
846 if (shgetc(f) < 0) goto input_fail;
882 while (scanset[(c=shgetc(f))+1])
885 while (scanset[(c=shgetc(f))+1]);