Lines Matching refs:LoadState
28 } LoadState; typedef
36 static void error(LoadState* S, const char* why) in error()
48 static void LoadBlock(LoadState* S, void* b, size_t size) in LoadBlock()
54 static int LoadChar(LoadState* S) in LoadChar()
61 static int LoadInt(LoadState* S) in LoadInt()
69 static lua_Number LoadNumber(LoadState* S) in LoadNumber()
76 static TString* LoadString(LoadState* S) in LoadString()
90 static void LoadCode(LoadState* S, Proto* f) in LoadCode()
98 static Proto* LoadFunction(LoadState* S, TString* p);
100 static void LoadConstants(LoadState* S, Proto* f) in LoadConstants()
137 static void LoadDebug(LoadState* S, Proto* f) in LoadDebug()
161 static Proto* LoadFunction(LoadState* S, TString* p) in LoadFunction()
183 static void LoadHeader(LoadState* S) in LoadHeader()
197 LoadState S; in luaU_undump()