Home
last modified time | relevance | path

Searched refs:luai_numpow (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/contrib/openzfs/include/sys/lua/
H A Dluaconf.h436 #define luai_numpow(L,a,b) (lcompat_pow((a),(b))) macro
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlobject.c76 case LUA_OPPOW: return luai_numpow(NULL, v1, v2); in luaO_arith()
H A Dlvm.c697 arith_op(luai_numpow, TM_POW); in luaV_execute()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dluaconf.h538 #define luai_numpow(a,b) (pow(a,b)) macro
H A Dlvm.c330 case TM_POW: setnvalue(ra, luai_numpow(nb, nc)); break; in Arith()
495 arith_op(luai_numpow, TM_POW); in luaV_execute()
H A Dlcode.c642 case OP_POW: r = luai_numpow(v1, v2); break; in constfolding()