Searched refs:luaO_arith (Results 1 – 8 of 8) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lobject.c | 68 lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2) { in luaO_arith() function
|
H A D | lobject.h | 597 LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2);
|
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 | lvm.c | 425 res = luaO_arith(op - TM_ADD + LUA_OPADD, nvalue(b), nvalue(c)); in luaV_arith()
|
H A D | lapi.c | 305 setnvalue(o1, luaO_arith(op, nvalue(o1), nvalue(o2))); in lua_arith()
|
/freebsd/contrib/lua/src/ |
H A D | lobject.c | 126 void luaO_arith (lua_State *L, int op, const TValue *p1, const TValue *p2, in luaO_arith() function
|
H A D | lobject.h | 803 LUAI_FUNC void luaO_arith (lua_State *L, int op, const TValue *p1,
|
H A D | lapi.c | 345 luaO_arith(L, op, s2v(L->top.p - 2), s2v(L->top.p - 1), L->top.p - 2); in lua_arith()
|