Lines Matching defs:S

40 static l_noret error (LoadState *S, const char *why) {  in error()
50 #define loadVector(S,b,n) loadBlock(S,b,(n)*sizeof((b)[0])) argument
52 static void loadBlock (LoadState *S, void *b, size_t size) { in loadBlock()
58 #define loadVar(S,x) loadVector(S,&x,1) argument
61 static lu_byte loadByte (LoadState *S) { in loadByte()
69 static size_t loadUnsigned (LoadState *S, size_t limit) { in loadUnsigned()
83 static size_t loadSize (LoadState *S) { in loadSize()
88 static int loadInt (LoadState *S) { in loadInt()
93 static lua_Number loadNumber (LoadState *S) { in loadNumber()
100 static lua_Integer loadInteger (LoadState *S) { in loadInteger()
110 static TString *loadStringN (LoadState *S, Proto *p) { in loadStringN()
136 static TString *loadString (LoadState *S, Proto *p) { in loadString()
144 static void loadCode (LoadState *S, Proto *f) { in loadCode()
155 static void loadConstants (LoadState *S, Proto *f) { in loadConstants()
191 static void loadProtos (LoadState *S, Proto *f) { in loadProtos()
212 static void loadUpvalues (LoadState *S, Proto *f) { in loadUpvalues()
227 static void loadDebug (LoadState *S, Proto *f) { in loadDebug()
258 static void loadFunction (LoadState *S, Proto *f, TString *psource) { in loadFunction()
275 static void checkliteral (LoadState *S, const char *s, const char *msg) { in checkliteral()
284 static void fchecksize (LoadState *S, size_t size, const char *tname) { in fchecksize()
290 #define checksize(S,t) fchecksize(S,sizeof(t),#t) argument
292 static void checkHeader (LoadState *S) { in checkHeader()
314 LoadState S; in luaU_undump() local