/l4re-core-master/lua/lib/contrib/src/ |
A D | lvm.h | 17 #define cvt2str(o) ttisnumber(o) argument 19 #define cvt2str(o) 0 /* no conversion from numbers to strings */ argument 24 #define cvt2num(o) ttisstring(o) argument 26 #define cvt2num(o) 0 /* no conversion from strings to numbers */ argument 51 #define tonumber(o,n) \ argument 56 #define tonumberns(o,n) \ argument 62 #define tointeger(o,i) \ argument 68 #define tointegerns(o,i) \ argument
|
A D | lobject.h | 70 #define val_(o) ((o)->value_) argument 71 #define valraw(o) (&val_(o)) argument 75 #define rawtt(o) ((o)->tt_) argument 82 #define ttypetag(o) withvariant(rawtt(o)) argument 85 #define ttype(o) (novariant(rawtt(o))) argument 89 #define checktag(o,t) (rawtt(o) == (t)) argument 90 #define checktype(o,t) (ttype(o) == (t)) argument 112 #define settt_(o,t) ((o)->tt_=(t)) argument 159 #define s2v(o) (&(o)->val) argument 400 #define vslen(o) tsslen(tsvalue(o)) argument [all …]
|
A D | lgc.c | 94 #define markvalue(g,o) { checkliveness(g->mainthread,o); \ argument 125 static GCObject **getgclist (GCObject *o) { in getgclist() 230 void luaC_barrierback_ (lua_State *L, GCObject *o) { in luaC_barrierback_() 243 void luaC_fix (lua_State *L, GCObject *o) { in luaC_fix() 340 GCObject *o; in markbeingfnz() local 424 static void genlink (global_State *g, GCObject *o) { in genlink() 623 StkId o = th->stack; in traversethread() local 653 GCObject *o = g->gray; in propagatemark() local 743 TValue *o = &h->array[i]; in clearbyvalues() local 764 static void freeobj (lua_State *L, GCObject *o) { in freeobj() [all …]
|
A D | lfunc.c | 28 GCObject *o = luaC_newobj(L, LUA_VCCL, sizeCclosure(nupvals)); in luaF_newCclosure() local 36 GCObject *o = luaC_newobj(L, LUA_VLCL, sizeLclosure(nupvals)); in luaF_newLclosure() local 51 GCObject *o = luaC_newobj(L, LUA_VUPVAL, sizeof(UpVal)); in luaF_initupvals() local 66 GCObject *o = luaC_newobj(L, LUA_VUPVAL, sizeof(UpVal)); in newupval() local 241 GCObject *o = luaC_newobj(L, LUA_VPROTO, sizeof(Proto)); in luaF_newproto() local
|
A D | lapi.c | 59 StkId o = ci->func + idx; in index2value() local 87 StkId o = ci->func + idx; in index2stack() local 279 const TValue *o = index2value(L, idx); in lua_type() local 292 const TValue *o = index2value(L, idx); in lua_iscfunction() local 298 const TValue *o = index2value(L, idx); in lua_isinteger() local 400 TValue *o; in lua_tolstring() local 797 TValue *o; in lua_getiuservalue() local 968 TValue *o; in lua_setiuservalue() local 1050 StkId o = index2stack(L, errfunc); in lua_pcallk() local 1105 TValue *o; in lua_dump() local [all …]
|
A D | lgc.h | 116 #define getage(o) ((o)->marked & AGEBITS) argument 117 #define setage(o,a) ((o)->marked = cast_byte(((o)->marked & (~AGEBITS)) | a)) argument 118 #define isold(o) (getage(o) > G_SURVIVAL) argument 120 #define changeage(o,f,t) \ argument 173 #define luaC_objbarrier(L,p,o) ( \ argument
|
A D | lstate.h | 365 #define cast_u(o) cast(union GCUnion *, (o)) argument 368 #define gco2ts(o) \ argument 370 #define gco2u(o) check_exp((o)->tt == LUA_VUSERDATA, &((cast_u(o))->u)) argument 371 #define gco2lcl(o) check_exp((o)->tt == LUA_VLCL, &((cast_u(o))->cl.l)) argument 372 #define gco2ccl(o) check_exp((o)->tt == LUA_VCCL, &((cast_u(o))->cl.c)) argument 373 #define gco2cl(o) \ argument 375 #define gco2t(o) check_exp((o)->tt == LUA_VTABLE, &((cast_u(o))->h)) argument 376 #define gco2p(o) check_exp((o)->tt == LUA_VPROTO, &((cast_u(o))->p)) argument 377 #define gco2th(o) check_exp((o)->tt == LUA_VTHREAD, &((cast_u(o))->th)) argument 378 #define gco2upv(o) check_exp((o)->tt == LUA_VUPVAL, &((cast_u(o))->upv)) argument
|
/l4re-core-master/moe/server/src/ |
A D | alloc.cc | 119 cxx::unique_ptr<Moe::Name_space> o(make_obj<Moe::Name_space>()); in op_create() local 129 cxx::unique_ptr<Region_map> o(make_obj<Region_map>()); in op_create() local 145 o(make_obj<Allocator>(quota.value<long>())); in op_create() local 206 cxx::unique_ptr<Sched_proxy> o(make_obj<Sched_proxy>()); in op_create() local 241 cxx::unique_ptr<Moe::Dma_space> o(make_obj<Moe::Dma_space>()); in op_create() local
|
A D | alloc.h | 44 T *o = qalloc()->make_obj<T>(cxx::forward<ARGS>(args)...); in make_obj() local
|
A D | main.cc | 282 typename Reg::Value *o = 0; in dispatch() local 440 parse_long_option(cxx::String const &o) in parse_long_option() 456 parse_option(cxx::String const &o) in parse_option()
|
A D | name_space.cc | 56 Entry::set(Moe::Server_object *o) in set() 135 Entry *o = ns->find(Entry::Name(part.start(), part.len())); in find_iter() local
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/unistd/ |
A D | getopt-susv3.c | 42 static const char *o; /* multi opt position */ in getopt() local 68 #define o p in getopt() macro
|
/l4re-core-master/ned/server/src/ |
A D | app_task.cc | 58 if (l4_cap_idx_t o = observer()) in op_signal() local
|
A D | app_task.h | 54 void observer(l4_cap_idx_t o) { _observer = o; } in observer()
|
/l4re-core-master/l4re/util/libs/ |
A D | name_space_svr.cc | 38 Entry::set(Obj const &o) in set() 59 Entry *o = ns->find(Name(part.start(), part.len())); in find_iter() local
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/ext/pb_ds/detail/tree_policy/ |
A D | order_statistics_imp.hpp | 52 const size_type o = (l_it == end_it)? 0 : l_it.get_metadata(); in find_by_order() local
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/ext/pb_ds/detail/tree_policy/ |
A D | order_statistics_imp.hpp | 52 const size_type o = (l_it == end_it)? 0 : l_it.get_metadata(); in find_by_order() local
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/ext/pb_ds/detail/tree_policy/ |
A D | order_statistics_imp.hpp | 52 const size_type o = (l_it == end_it)? 0 : l_it.get_metadata(); in find_by_order() local
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/ext/pb_ds/detail/tree_policy/ |
A D | order_statistics_imp.hpp | 52 const size_type o = (l_it == end_it)? 0 : l_it.get_metadata(); in find_by_order() local
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/ext/pb_ds/detail/tree_policy/ |
A D | order_statistics_imp.hpp | 52 const size_type o = (l_it == end_it)? 0 : l_it.get_metadata(); in find_by_order() local
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/ext/pb_ds/detail/tree_policy/ |
A D | order_statistics_imp.hpp | 52 const size_type o = (l_it == end_it)? 0 : l_it.get_metadata(); in find_by_order() local
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/ext/pb_ds/detail/tree_policy/ |
A D | order_statistics_imp.hpp | 54 const size_type o = (l_it == end_it)? 0 : l_it.get_metadata(); in find_by_order() local
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/ext/pb_ds/detail/tree_policy/ |
A D | order_statistics_imp.hpp | 54 const size_type o = (l_it == end_it)? 0 : l_it.get_metadata(); in find_by_order() local
|
/l4re-core-master/cxx/lib/tl/include/bits/ |
A D | bst_iter.h | 108 __Bst_iter(Base const &o) : Base(o) {} in __Bst_iter()
|
/l4re-core-master/l4sys/include/cxx/ |
A D | capability.h | 244 Cap(Cap<O> const &o) noexcept : Cap_base(o.cap()) in Cap() function 358 Cap(Cap<T> const &o) noexcept : Cap_base(o.cap()) {} in Cap() function
|