Lines Matching refs:LoadByte
65 static lu_byte LoadByte (LoadState *S) { in LoadByte() function
94 size_t size = LoadByte(S); in LoadString()
127 int t = LoadByte(S); in LoadConstants()
133 setbvalue(o, LoadByte(S)); in LoadConstants()
176 f->upvalues[i].instack = LoadByte(S); in LoadUpvalues()
177 f->upvalues[i].idx = LoadByte(S); in LoadUpvalues()
210 f->numparams = LoadByte(S); in LoadFunction()
211 f->is_vararg = LoadByte(S); in LoadFunction()
212 f->maxstacksize = LoadByte(S); in LoadFunction()
231 if (LoadByte(S) != size) in fchecksize()
240 if (LoadByte(S) != LUAC_VERSION) in checkHeader()
242 if (LoadByte(S) != LUAC_FORMAT) in checkHeader()
274 cl = luaF_newLclosure(L, LoadByte(&S)); in luaU_undump()