Home
last modified time | relevance | path

Searched refs:ttype (Results 1 – 21 of 21) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlobject.h79 #define ttisnil(o) (ttype(o) == LUA_TNIL)
80 #define ttisnumber(o) (ttype(o) == LUA_TNUMBER)
81 #define ttisstring(o) (ttype(o) == LUA_TSTRING)
82 #define ttistable(o) (ttype(o) == LUA_TTABLE)
83 #define ttisfunction(o) (ttype(o) == LUA_TFUNCTION)
84 #define ttisboolean(o) (ttype(o) == LUA_TBOOLEAN)
85 #define ttisuserdata(o) (ttype(o) == LUA_TUSERDATA)
86 #define ttisthread(o) (ttype(o) == LUA_TTHREAD)
90 #define ttype(o) ((o)->tt) macro
186 #define setttype(obj, tt) (ttype(obj) = (tt))
[all …]
H A Dlvm.h16 #define tostring(L,o) ((ttype(o) == LUA_TSTRING) || (luaV_tostring(L, o)))
18 #define tonumber(o,n) (ttype(o) == LUA_TNUMBER || \
22 (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2))
H A Dltm.c63 switch (ttype(o)) { in luaT_gettmbyobj()
71 mt = G(L)->mt[ttype(o)]; in luaT_gettmbyobj()
H A Dlobject.c73 if (ttype(t1) != ttype(t2)) return 0; in luaO_rawequalObj()
74 else switch (ttype(t1)) { in luaO_rawequalObj()
H A Dlapi.c244 return (o == luaO_nilobject) ? LUA_TNONE : ttype(o); in lua_type()
363 switch (ttype(o)) { in lua_objlen()
387 switch (ttype(o)) { in lua_touserdata()
403 switch (ttype(o)) { in lua_topointer()
593 switch (ttype(obj)) { in lua_getmetatable()
601 mt = G(L)->mt[ttype(obj)]; in lua_getmetatable()
621 switch (ttype(o)) { in lua_getfenv()
710 switch (ttype(obj)) { in lua_setmetatable()
724 G(L)->mt[ttype(obj)] = mt; in lua_setmetatable()
742 switch (ttype(o)) { in lua_setfenv()
H A Dlvm.c227 if (ttype(l) != ttype(r)) in luaV_lessthan()
241 if (ttype(l) != ttype(r)) in lessequal()
257 lua_assert(ttype(t1) == ttype(t2)); in luaV_equalval()
258 switch (ttype(t1)) { in luaV_equalval()
516 switch (ttype(rb)) { in luaV_execute()
H A Dldump.c87 DumpChar(ttype(o),D); in DumpConstants()
88 switch (ttype(o)) in DumpConstants()
H A Dprint.c54 switch (ttype(o)) in PrintConstant()
69 printf("? type=%d",ttype(o)); in PrintConstant()
H A Dltable.c101 switch (ttype(key)) { in mainposition()
148 (ttype(gkey(n)) == LUA_TDEADKEY && iscollectable(key) && in findindex()
470 switch (ttype(key)) { in luaH_get()
H A Dldebug.c569 const char *t = luaT_typenames[ttype(o)]; in luaG_typeerror()
597 const char *t1 = luaT_typenames[ttype(p1)]; in luaG_ordererror()
598 const char *t2 = luaT_typenames[ttype(p2)]; in luaG_ordererror()
H A Dlgc.c186 lua_assert(ttype(gkey(n)) != LUA_TDEADKEY || ttisnil(gval(n))); in traversetable()
665 lua_assert(ttype(&o->gch) != LUA_TTABLE); in luaC_barrierf()
/f-stack/tools/ipfw/
H A Dtables.c354 table_parse_type(uint8_t ttype, char *p, uint8_t *tflags) in table_parse_type() argument
360 switch(ttype) { in table_parse_type()
790 char ttype[64], tvtype[64]; in table_show_info() local
792 table_print_type(ttype, sizeof(ttype), i->type, i->tflags); in table_show_info()
797 printf(" kindex: %d, type: %s, locked\n", i->kidx, ttype); in table_show_info()
799 printf(" kindex: %d, type: %s\n", i->kidx, ttype); in table_show_info()
H A Dipfw2.c2569 int ttype; in foreach_state() local
2576 ttype = 0; in foreach_state()
2584 ttype = IPFW_TLV_DYN_ENT; in foreach_state()
2594 if (tlv->type != ttype) in foreach_state()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlobject.h122 #define ttype(o) (rttype(o) & 0x3F) macro
175 #define righttt(obj) (ttype(obj) == gcvalue(obj)->gch.tt)
H A Dltable.c98 switch (ttype(key)) { in mainposition()
484 switch (ttype(key)) { in luaH_get()
H A Dlapi.c442 switch (ttype(o)) { in lua_topointer()
1187 switch (ttype(fi)) { in aux_upvalue()
1256 switch (ttype(fi)) { in lua_upvalueid()
H A Dldo.c371 switch (ttype(func)) { in luaD_precall()
H A Dlvm.c264 switch (ttype(t1)) { in luaV_equalobj_()
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-usb.c1999 cvmx_usb_transfer_t ttype; in __cvmx_usb_schedule() local
2085 for (ttype=CVMX_USB_TRANSFER_CONTROL; ttype<=CVMX_USB_TRANSFER_INTERRUPT; ttype++) in __cvmx_usb_schedule()
2087 pipe = usb->active_pipes[ttype].head; in __cvmx_usb_schedule()
H A Dcvmx-sriomaintx-defs.h1872 uint32_t ttype : 4; /**< Transaction Type associated with the error member
1904 uint32_t ttype : 4;
/f-stack/dpdk/drivers/net/ice/
H A Dice_fdir_filter.c1025 enum ice_fdir_tunnel_type ttype) in ice_fdir_input_set_conf() argument
1066 is_tunnel = ice_fdir_is_tunnel_profile(ttype); in ice_fdir_input_set_conf()