Home
last modified time | relevance | path

Searched refs:ttisfloat (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/mit/lua/dist/src/
H A Dlvm.h55 (ttisfloat(o) ? (*(n) = fltvalue(o), 1) : luaV_tonumber_(o,n))
63 (ttisfloat(o) ? ((n) = fltvalue(o), 1) : \
H A Dlobject.h332 #define ttisfloat(o) checktag((o), LUA_VNUMFLT) macro
342 #define fltvalue(o) check_exp(ttisfloat(o), val_(o).n)
354 { TValue *io=(obj); lua_assert(ttisfloat(io)); val_(io).n=(x); }
H A Dlvm.c149 if (ttisfloat(obj))
515 if (ttisfloat(r))
543 if (ttisfloat(r))
957 else if (ttisfloat(v1)) { \
1105 else if (ttisfloat(s2v(ra))) { \
1733 else if (ttisfloat(s2v(ra)))
H A Dllex.c261 lua_assert(ttisfloat(&obj)); in read_numeral()
H A Dltable.c683 else if (ttisfloat(key)) { in luaH_newkey()