Home
last modified time | relevance | path

Searched refs:luaK_codeABx (Results 1 – 6 of 6) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlcode.h41 #define luaK_codeAsBx(fs,o,A,sBx) luaK_codeABx(fs,o,A,(sBx)+MAXARG_sBx)
45 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx);
H A Dlcode.c316 e->u.s.info = luaK_codeABx(fs, OP_GETGLOBAL, 0, e->u.s.info); in luaK_dischargevars()
355 luaK_codeABx(fs, OP_LOADK, reg, e->u.s.info); in discharge2reg()
359 luaK_codeABx(fs, OP_LOADK, reg, luaK_numberK(fs, e->u.nval)); in discharge2reg()
486 luaK_codeABx(fs, OP_SETGLOBAL, e, var->u.s.info); in luaK_storevar()
812 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx() function
H A Dlparser.c320 init_exp(v, VRELOCABLE, luaK_codeABx(fs, OP_CLOSURE, 0, fs->np-1)); in pushclosure()
1082 luaK_codeABx(fs, OP_LOADK, fs->freereg, luaK_numberK(fs, 1)); in fornum()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlcode.h42 #define luaK_codeAsBx(fs,o,A,sBx) luaK_codeABx(fs,o,A,(sBx)+MAXARG_sBx)
48 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx);
H A Dlcode.c234 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx() function
250 return luaK_codeABx(fs, OP_LOADK, reg, k); in luaK_codek()
252 int p = luaK_codeABx(fs, OP_LOADKX, reg, 0); in luaK_codek()
H A Dlparser.c520 init_exp(v, VRELOCABLE, luaK_codeABx(fs, OP_CLOSURE, 0, fs->np - 1)); in codeclosure()