Lines Matching refs:LoadState
36 } LoadState; typedef
39 static l_noret error(LoadState *S, const char *why) { in error()
51 static void LoadBlock (LoadState *S, void *b, size_t size) { in LoadBlock()
60 static lu_byte LoadByte (LoadState *S) { in LoadByte()
67 static int LoadInt (LoadState *S) { in LoadInt()
74 static lua_Number LoadNumber (LoadState *S) { in LoadNumber()
81 static lua_Integer LoadInteger (LoadState *S) { in LoadInteger()
88 static TString *LoadString (LoadState *S) { in LoadString()
107 static void LoadCode (LoadState *S, Proto *f) { in LoadCode()
115 static void LoadFunction(LoadState *S, Proto *f, TString *psource);
118 static void LoadConstants (LoadState *S, Proto *f) { in LoadConstants()
152 static void LoadProtos (LoadState *S, Proto *f) { in LoadProtos()
166 static void LoadUpvalues (LoadState *S, Proto *f) { in LoadUpvalues()
180 static void LoadDebug (LoadState *S, Proto *f) { in LoadDebug()
202 static void LoadFunction (LoadState *S, Proto *f, TString *psource) { in LoadFunction()
219 static void checkliteral (LoadState *S, const char *s, const char *msg) { in checkliteral()
228 static void fchecksize (LoadState *S, size_t size, const char *tname) { in fchecksize()
236 static void checkHeader (LoadState *S) { in checkHeader()
259 LoadState S; in luaU_undump()