Home
last modified time | relevance | path

Searched refs:LUA_OPADD (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/lua/src/
H A Dlobject.c56 case LUA_OPADD: return intop(+, v1, v2); in intarith()
76 case LUA_OPADD: return luai_numadd(L, v1, v2); in numarith()
130 luaT_trybinTM(L, p1, p2, res, cast(TMS, (op - LUA_OPADD) + TM_ADD)); in luaO_arith()
H A Dlua.h216 #define LUA_OPADD 0 /* ORDER TM, ORDER OP */ macro
H A Dlstrlib.c298 return arith(L, LUA_OPADD, "__add"); in arith_add()
H A Dlcode.c1712 if (foldbinop(opr) && constfolding(fs, opr + LUA_OPADD, e1, e2)) in luaK_posfix()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlobject.c70 case LUA_OPADD: return luai_numadd(NULL, v1, v2); in luaO_arith()
H A Dlvm.c419 int lop = op - TM_ADD + LUA_OPADD; in luaV_arith()
425 res = luaO_arith(op - TM_ADD + LUA_OPADD, nvalue(b), nvalue(c)); in luaV_arith()
H A Dlcode.c724 r = luaO_arith(op - OP_ADD + LUA_OPADD, e1->u.nval, e2->u.nval); in constfolding()
H A Dlapi.c308 luaV_arith(L, o1, o1, o2, cast(TMS, op - LUA_OPADD + TM_ADD)); in lua_arith()
/freebsd/sys/contrib/openzfs/include/sys/lua/
H A Dlua.h183 #define LUA_OPADD 0 /* ORDER TM */ macro