OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ttisnumber
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/skia/third_party/lua/src/
lvm.h
18
#define tonumber(o,n) (
ttisnumber
(o) || (((o) = luaV_tonumber(o,n)) != NULL))
lobject.h
133
#define
ttisnumber
(o) checktag((o), LUA_TNUMBER)
macro
153
#define nvalue(o) check_exp(
ttisnumber
(o), num_(o))
337
#undef
ttisnumber
macro
338
#define
ttisnumber
(o) ((tt_(o) & NNMASK) != NNMARK)
macro
343
#define rttype(o) (
ttisnumber
(o) ? LUA_TNUMBER : tt_(o) & 0xff)
350
{ TValue *io_=(obj); num_(io_)=(x); lua_assert(
ttisnumber
(io_)); }
370
(
ttisnumber
(o1) ?
ttisnumber
(o2) : (tt_(o1) == tt_(o2)))
374
#define luai_checknum(L,o,c) { if (!
ttisnumber
(o)) c; }
lvm.c
37
if (
ttisnumber
(obj)) return obj;
48
if (!
ttisnumber
(obj))
233
if (
ttisnumber
(l) &&
ttisnumber
(r))
245
if (
ttisnumber
(l) &&
ttisnumber
(r))
298
if (!(ttisstring(top-2) ||
ttisnumber
(top-2)) || !tostring(L, top-1)) {
523
if (
ttisnumber
(rb) &&
ttisnumber
(rc)) { \
637
if (
ttisnumber
(rb))
[
all
...]
ltable.c
128
if (
ttisnumber
(key)) {
408
else if (
ttisnumber
(key) && luai_numisnan(L, nvalue(key)))
454
if (
ttisnumber
(gkey(n)) && luai_numeq(nvalue(gkey(n)), nk))
ldebug.c
520
if (ttisstring(p1) ||
ttisnumber
(p1)) p1 = p2;
521
lua_assert(!ttisstring(p1) && !
ttisnumber
(p2));
lapi.c
306
if (
ttisnumber
(o1) &&
ttisnumber
(o2)) {
lcode.c
296
if (
ttisnumber
(idx)) {
Completed in 35 milliseconds