Lines Matching refs:LoadByte
60 static lu_byte LoadByte (LoadState *S) { in LoadByte() function
89 size_t size = LoadByte(S); in LoadString()
127 int t = LoadByte(S); in LoadConstants()
133 setbvalue(o, LoadByte(S)); in LoadConstants()
174 f->upvalues[i].instack = LoadByte(S); in LoadUpvalues()
175 f->upvalues[i].idx = LoadByte(S); in LoadUpvalues()
208 f->numparams = LoadByte(S); in LoadFunction()
209 f->is_vararg = LoadByte(S); in LoadFunction()
210 f->maxstacksize = LoadByte(S); in LoadFunction()
229 if (LoadByte(S) != size) in fchecksize()
238 if (LoadByte(S) != LUAC_VERSION) in checkHeader()
240 if (LoadByte(S) != LUAC_FORMAT) in checkHeader()
270 cl = luaF_newLclosure(L, LoadByte(&S)); in luaU_undump()