Searched refs:LUA_OPADD (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/lua/src/ |
H A D | lobject.c | 56 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 D | lua.h | 216 #define LUA_OPADD 0 /* ORDER TM, ORDER OP */ macro
|
H A D | lstrlib.c | 298 return arith(L, LUA_OPADD, "__add"); in arith_add()
|
H A D | lcode.c | 1712 if (foldbinop(opr) && constfolding(fs, opr + LUA_OPADD, e1, e2)) in luaK_posfix()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lobject.c | 70 case LUA_OPADD: return luai_numadd(NULL, v1, v2); in luaO_arith()
|
H A D | lvm.c | 419 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 D | lcode.c | 724 r = luaO_arith(op - OP_ADD + LUA_OPADD, e1->u.nval, e2->u.nval); in constfolding()
|
H A D | lapi.c | 308 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 D | lua.h | 183 #define LUA_OPADD 0 /* ORDER TM */ macro
|