Home
last modified time | relevance | path

Searched refs:luaO_arith (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/contrib/openzfs/module/lua/
H A Dlobject.c68 lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2) { in luaO_arith() function
H A Dlobject.h597 LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2);
H A Dlcode.c724 r = luaO_arith(op - OP_ADD + LUA_OPADD, e1->u.nval, e2->u.nval); in constfolding()
H A Dlvm.c425 res = luaO_arith(op - TM_ADD + LUA_OPADD, nvalue(b), nvalue(c)); in luaV_arith()
H A Dlapi.c305 setnvalue(o1, luaO_arith(op, nvalue(o1), nvalue(o2))); in lua_arith()
/freebsd/contrib/lua/src/
H A Dlobject.c126 void luaO_arith (lua_State *L, int op, const TValue *p1, const TValue *p2, in luaO_arith() function
H A Dlobject.h803 LUAI_FUNC void luaO_arith (lua_State *L, int op, const TValue *p1,
H A Dlapi.c345 luaO_arith(L, op, s2v(L->top.p - 2), s2v(L->top.p - 1), L->top.p - 2); in lua_arith()