HomeSort by relevance Sort by last modified time
    Searched refs:fltvalue (Results 1 - 9 of 9) sorted by null

  /external/lua/src/
lvm.c 98 lua_Number n = fltvalue(obj);
324 return LTintfloat(li, fltvalue(r)); /* l < r ? */
327 lua_Number lf = fltvalue(l); /* 'l' must be float */
329 return luai_numlt(lf, fltvalue(r)); /* both are float */
347 return LEintfloat(li, fltvalue(r)); /* l <= r ? */
350 lua_Number lf = fltvalue(l); /* 'l' must be float */
352 return luai_numle(lf, fltvalue(r)); /* both are float */
421 case LUA_TNUMFLT: return luai_numeq(fltvalue(t1), fltvalue(t2));
    [all...]
lvm.h 41 (ttisfloat(o) ? (*(n) = fltvalue(o), 1) : luaV_tonumber_(o,n))
ldump.c 112 DumpNumber(fltvalue(o), D);
lobject.h 164 #define fltvalue(o) check_exp(ttisfloat(o), val_(o).n) macro
166 (ttisinteger(o) ? cast_num(ivalue(o)) : fltvalue(o)))
ltable.c 122 return hashmod(t, l_hashfloat(fltvalue(key)));
471 else if (luai_numisnan(fltvalue(key)))
llex.c 240 seminfo->r = fltvalue(&obj);
lobject.c 378 len = lua_number2str(buff, sizeof(buff), fltvalue(obj));
luac.c 268 sprintf(buff,LUA_NUMBER_FMT,fltvalue(o));
lcode.c 989 lua_Number n = fltvalue(&res);
    [all...]

Completed in 98 milliseconds