Lines Matching defs:f
98 #define l_getc(f) getc_unlocked(f) argument
99 #define l_lockfile(f) flockfile(f) argument
100 #define l_unlockfile(f) funlockfile(f) argument
102 #define l_getc(f) getc(f) argument
103 #define l_lockfile(f) ((void)0) argument
104 #define l_unlockfile(f) ((void)0) argument
122 #define l_fseek(f,o,w) fseeko(f,o,w) argument
123 #define l_ftell(f) ftello(f) argument
130 #define l_fseek(f,o,w) _fseeki64(f,o,w) argument
131 #define l_ftell(f) _ftelli64(f) argument
137 #define l_fseek(f,o,w) fseek(f,o,w) argument
138 #define l_ftell(f) ftell(f) argument
321 static int g_iofile (lua_State *L, const char *f, const char *mode) { in g_iofile()
431 FILE *f; /* file being read */ member
480 static int read_number (lua_State *L, FILE *f) { in read_number()
514 static int test_eof (lua_State *L, FILE *f) { in test_eof()
522 static int read_line (lua_State *L, FILE *f, int chop) { in read_line()
543 static void read_all (lua_State *L, FILE *f) { in read_all()
556 static int read_chars (lua_State *L, FILE *f, size_t n) { in read_chars()
569 static int g_read (lua_State *L, FILE *f, int first) { in g_read()
664 static int g_write (lua_State *L, FILE *f, int arg) { in g_write()
697 FILE *f = tofile(L); in f_write() local
706 FILE *f = tofile(L); in f_seek() local
726 FILE *f = tofile(L); in f_setvbuf() local
738 FILE *f = getiofile(L, IO_OUTPUT); in io_flush() local
745 FILE *f = tofile(L); in f_flush() local
819 static void createstdfile (lua_State *L, FILE *f, const char *k, in createstdfile()