Lines Matching defs:f
56 #define ngetc(f) (nread++, getc(f)) argument
57 #define nungetc(c, f) (--nread, ungetc((c), f)) argument
58 #define wgetc(c, f, out) if(width--==0) goto out; (c)=ngetc(f) argument
59 #define wungetc(c, f) (++width, nungetc(c, f)) argument
63 int vfscanf(FILE *f, const char *s, va_list args){ in vfscanf()
108 static int icvt_n(FILE *f, va_list *args, int store, int width, int type){ in icvt_n()
135 static int icvt_fixed(FILE *f, va_list *args, in icvt_fixed()
214 static int icvt_d(FILE *f, va_list *args, int store, int width, int type){ in icvt_d()
217 static int icvt_x(FILE *f, va_list *args, int store, int width, int type){ in icvt_x()
220 static int icvt_o(FILE *f, va_list *args, int store, int width, int type){ in icvt_o()
223 static int icvt_i(FILE *f, va_list *args, int store, int width, int type){ in icvt_i()
226 static int icvt_u(FILE *f, va_list *args, int store, int width, int type){ in icvt_u()
229 static int icvt_p(FILE *f, va_list *args, int store, int width, int type){ in icvt_p()
233 static int icvt_f(FILE *f, va_list *args, int store, int width, int type){ in icvt_f()
281 static int icvt_s(FILE *f, va_list *args, int store, int width, int type){ in icvt_s()
309 static int icvt_c(FILE *f, va_list *args, int store, int width, int type){ in icvt_c()
341 static int icvt_sq(FILE *f, va_list *args, int store, int width, int type){ in icvt_sq()