Lines Matching refs:LoadState
28 } LoadState; typedef
30 static l_noret error(LoadState* S, const char* why) in error()
45 static void LoadBlock(LoadState* S, void* b, size_t size) in LoadBlock()
50 static int LoadChar(LoadState* S) in LoadChar()
57 static int LoadInt(LoadState* S) in LoadInt()
65 static lua_Number LoadNumber(LoadState* S) in LoadNumber()
72 static TString* LoadString(LoadState* S) in LoadString()
86 static void LoadCode(LoadState* S, Proto* f) in LoadCode()
94 static void LoadFunction(LoadState* S, Proto* f);
96 static void LoadConstants(LoadState* S, Proto* f) in LoadConstants()
135 static void LoadUpvalues(LoadState* S, Proto* f) in LoadUpvalues()
149 static void LoadDebug(LoadState* S, Proto* f) in LoadDebug()
171 static void LoadFunction(LoadState* S, Proto* f) in LoadFunction()
190 static void LoadHeader(LoadState* S) in LoadHeader()
208 LoadState S; in luaU_undump()