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.c1370 ((baser == OPR_ADD && opr <= OPR_SHR) || in binopr2op()
1389 lua_assert(OPR_ADD <= opr && opr <= OPR_SHR); in binopr2TM()
1390 return cast(TMS, (cast_int(opr) - cast_int(OPR_ADD)) + cast_int(TM_ADD)); in binopr2TM()
1434 OpCode op = binopr2op(opr, OPR_ADD, OP_ADD); in codebinexpval()
1463 OpCode op = binopr2op(opr, OPR_ADD, OP_ADDK); in codebinK()
1531 if (op == OPR_ADD && isSCint(e2)) /* immediate operand? */ in codecommutative()
1659 case OPR_ADD: case OPR_SUB: in luaK_infix()
1736 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.c1207 case '+': return OPR_ADD; in getbinopr()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlcode.h28 OPR_ADD, OPR_SUB, OPR_MUL, OPR_DIV, OPR_MOD, OPR_POW, enumerator
H A Dlcode.c807 case OPR_ADD: case OPR_SUB: case OPR_MUL: case OPR_DIV: in luaK_infix()
851 case OPR_ADD: case OPR_SUB: case OPR_MUL: case OPR_DIV: in luaK_posfix()
853 codearith(fs, cast(OpCode, op - OPR_ADD + OP_ADD), e1, e2, line); in luaK_posfix()
H A Dlparser.c1003 case '+': return OPR_ADD; in getbinopr()