Lines Matching defs:S

44 static l_noret error (LoadState *S, const char *why) {  in error()
54 #define loadVector(S,b,n) loadBlock(S,b,(n)*sizeof((b)[0])) argument
56 static void loadBlock (LoadState *S, void *b, size_t size) { in loadBlock()
62 #define loadVar(S,x) loadVector(S,&x,1) argument
65 static lu_byte loadByte (LoadState *S) { in loadByte()
73 static size_t loadUnsigned (LoadState *S, size_t limit) { in loadUnsigned()
87 static size_t loadSize (LoadState *S) { in loadSize()
92 static int loadInt (LoadState *S) { in loadInt()
97 static lua_Number loadNumber (LoadState *S) { in loadNumber()
104 static lua_Integer loadInteger (LoadState *S) { in loadInteger()
114 static TString *loadStringN (LoadState *S, Proto *p) { in loadStringN()
140 static TString *loadString (LoadState *S, Proto *p) { in loadString()
148 static void loadCode (LoadState *S, Proto *f) { in loadCode()
159 static void loadConstants (LoadState *S, Proto *f) { in loadConstants()
197 static void loadProtos (LoadState *S, Proto *f) { in loadProtos()
218 static void loadUpvalues (LoadState *S, Proto *f) { in loadUpvalues()
233 static void loadDebug (LoadState *S, Proto *f) { in loadDebug()
264 static void loadFunction (LoadState *S, Proto *f, TString *psource) { in loadFunction()
281 static void checkliteral (LoadState *S, const char *s, const char *msg) { in checkliteral()
290 static void fchecksize (LoadState *S, size_t size, const char *tname) { in fchecksize()
296 #define checksize(S,t) fchecksize(S,sizeof(t),#t) argument
298 static void checkHeader (LoadState *S) { in checkHeader()
320 LoadState S; in luaU_undump() local