Home
last modified time | relevance | path

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

/freebsd/contrib/lua/src/
H A Dlcode.c1366 ((baser == OPR_ADD && opr <= OPR_SHR) || in binopr2op()
1385 lua_assert(OPR_ADD <= opr && opr <= OPR_SHR); in binopr2TM()
1386 return cast(TMS, (cast_int(opr) - cast_int(OPR_ADD)) + cast_int(TM_ADD)); in binopr2TM()
1430 OpCode op = binopr2op(opr, OPR_ADD, OP_ADD); in codebinexpval()
1459 OpCode op = binopr2op(opr, OPR_ADD, OP_ADDK); in codebinK()
1527 if (op == OPR_ADD && isSCint(e2)) /* immediate operand? */ in codecommutative()
1655 case OPR_ADD: case OPR_SUB: in luaK_infix()
1732 case OPR_ADD: case OPR_MUL: { in luaK_posfix()
H A Dlcode.h28 OPR_ADD, OPR_SUB, OPR_MUL, OPR_MOD, OPR_POW, enumerator
H A Dlparser.c1208 case '+': return OPR_ADD; in getbinopr()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlcode.h27 OPR_ADD, OPR_SUB, OPR_MUL, OPR_DIV, OPR_MOD, OPR_POW, enumerator
H A Dlcode.c806 case OPR_ADD: case OPR_SUB: case OPR_MUL: case OPR_DIV: in luaK_infix()
850 case OPR_ADD: case OPR_SUB: case OPR_MUL: case OPR_DIV: in luaK_posfix()
852 codearith(fs, cast(OpCode, op - OPR_ADD + OP_ADD), e1, e2, line); in luaK_posfix()
H A Dlparser.c1002 case '+': return OPR_ADD; in getbinopr()