/l4re-core-master/ned/server/src/ |
A D | lua_cap.cc | 25 lua_remove(l, -2); in get_cap_cast_table() 35 lua_newtable(l); in create_class() 36 rm(l); in create_class() 46 lua_remove(l, -2); in get_class() 50 is_valid(lua_State *l) in is_valid() argument 58 gc_cap(lua_State *l) in gc_cap() argument 110 if (lua_gettop(l) >= 2 && !lua_isnil(l, 2)) in __set_mode_call() 263 lua_newtable(l); in push_void_cap() 327 lua_pushnil(l); in __cast() 343 lua_newtable(l); in init_lua_cap() [all …]
|
A D | lua_info.cc | 28 static int kipstr(lua_State *l) in kipstr() argument 31 lua_pushstring(l, s); in kipstr() 44 lua_pushstring(l, "ux"); in platformstr() 50 void init(lua_State *l) in init() argument 54 lua_newtable(l); in init() 57 lua_newtable(l); in init() 60 lua_setfield(l, -2, "str"); in init() 61 lua_setfield(l, -2, "Kip"); in init() 65 lua_setfield(l, -2, "arch"); in init() 71 lua_setfield(l, -2, "Info"); in init() [all …]
|
A D | lua_ns.cc | 27 __lookup(lua_State *l) in __lookup() argument 41 lua_gc(l, LUA_GCCOLLECT, 0); in __lookup() 46 return Cap::index(l); in __lookup() 50 lua_pushnil(l); in __lookup() 67 __query(lua_State *l) in __query() argument 71 int argc = lua_gettop(l); in __query() 75 lua_pushvalue(l, 1); in __query() 76 lua_pushvalue(l, 2); in __query() 78 lua_pushvalue(l, 3); in __query() 87 __register(lua_State *l) in __register() argument [all …]
|
A D | lua_factory.cc | 30 lua_createtable(l, 0, 2); in __error() 33 luaL_where(l, 1); in __error() 36 lua_concat(l, 2); in __error() 37 lua_setfield(l, -2, "msg"); in __error() 40 lua_pushinteger(l, r); in __error() 45 __alloc(lua_State *l) in __alloc() argument 47 int argc = lua_gettop(l); in __alloc() 60 if (lua_isnumber(l, i)) in __alloc() 74 __error(l, r); in __alloc() 75 lua_error(l); in __alloc() [all …]
|
A D | lua_cap.h | 93 int index(lua_State *l) const; 118 lua_newtable(l); in add_class_metatable() 119 get_class(l); in add_class_metatable() 121 lua_setmetatable(l, -2); in add_class_metatable() 137 push_void_cap(lua_State *l); 144 check_cap(lua_State *l, int idx) in check_cap() argument 153 get_cap_cast_table(l); in register_cap_type() 164 lua_pushvalue(l, -2); in register_cap_type() 165 lua_settable(l, -4); in register_cap_type() 169 lua_pop(l, 1); in register_cap_type() [all …]
|
A D | lua_sleep.cc | 19 static int sleep(lua_State *l) in sleep() argument 21 if (lua_gettop(l) >= 1 && !lua_isnil(l, 1) in sleep() 22 && lua_isnumber(l, 1)) in sleep() 31 static int msleep(lua_State *l) in msleep() argument 33 if (lua_gettop(l) >= 1 && !lua_isnil(l, 1) in msleep() 34 && lua_isnumber(l, 1)) in msleep() 46 void init(lua_State *l) in init() argument 51 lua_pushcfunction(l, sleep); in init() 52 lua_setfield(l, -2, "sleep"); in init() 55 lua_pushcfunction(l, msleep); in init() [all …]
|
A D | lua_exec.cc | 154 explicit Am(lua_State *l) in Am() argument 155 : Rmt_app_model(), _lua(l), _argc(lua_gettop(l)), _env_idx(0), _cfg_idx(1), in Am() 294 size_t l; in push_argv_strings() local 346 lua_pushnil(l); in __task_state() 376 lua_pushnil(l); in __task_exit_code() 389 lua_pushnil(l); in __task_wait() 406 lua_pushnil(l); in __task_kill() 468 Am am(l); in exec() 513 void init(lua_State *l) in init() argument 525 lua_newtable(l); in init() [all …]
|
A D | lua_env.cc | 27 void init(lua_State *l) in init() argument 32 Lua::lua_require_module(l, "L4"); in init() 33 lua_newtable(l); in init() 34 lua_pushvalue(l, -1); in init() 35 lua_setfield(l, -3, "Env"); in init() 39 register_cap(l, "parent", e->parent()); in init() 41 register_cap(l, "rm", e->rm()); in init() 42 register_cap(l, "log", e->log()); in init() 44 register_cap(l, "scheduler", e->scheduler()); in init() 49 register_cap(l, i->name, L4::Cap<L4::Kobject>(i->cap)); in init() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/ |
A D | sched_cpucount.c | 40 l = (l & 0x5555555555555555ul) + ((l >> 1) & 0x5555555555555555ul); in __sched_cpucount() 41 l = (l & 0x3333333333333333ul) + ((l >> 2) & 0x3333333333333333ul); in __sched_cpucount() 42 l = (l & 0x0f0f0f0f0f0f0f0ful) + ((l >> 4) & 0x0f0f0f0f0f0f0f0ful); in __sched_cpucount() 43 l = (l & 0x00ff00ff00ff00fful) + ((l >> 8) & 0x00ff00ff00ff00fful); in __sched_cpucount() 44 l = (l & 0x0000ffff0000fffful) + ((l >> 16) & 0x0000ffff0000fffful); in __sched_cpucount() 45 l = (l & 0x00000000fffffffful) + ((l >> 32) & 0x00000000fffffffful); in __sched_cpucount() 47 l = (l & 0x55555555ul) + ((l >> 1) & 0x55555555ul); in __sched_cpucount() 48 l = (l & 0x33333333ul) + ((l >> 2) & 0x33333333ul); in __sched_cpucount() 49 l = (l & 0x0f0f0f0ful) + ((l >> 4) & 0x0f0f0f0ful); in __sched_cpucount() 50 l = (l & 0x00ff00fful) + ((l >> 8) & 0x00ff00fful); in __sched_cpucount() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/sh/ |
A D | pthread_cond_timedwait.S | 36 mov.l r8, @-r15 38 mov.l r9, @-r15 40 mov.l r10, @-r15 42 mov.l r11, @-r15 44 mov.l r12, @-r15 48 sts.l pr, @-r15 62 mov.l .L1g, r1 150 mov.l @r13, r2 171 mov.l @r13, r2 244 mov.l @r1, r5 [all …]
|
A D | pthread_cond_wait.S | 34 mov.l r8, @-r15 36 mov.l r9, @-r15 38 mov.l r10, @-r15 40 mov.l r11, @-r15 42 mov.l r12, @-r15 44 sts.l pr, @-r15 136 mov.l r0, @r15 150 mov.l @r1, r5 243 mov.l @r1, r5 525 mov.l @r1, r5 [all …]
|
A D | pthread_rwlock_timedwrlock.S | 33 mov.l r12, @-r15 34 mov.l r10, @-r15 35 mov.l r9, @-r15 36 mov.l r8, @-r15 37 sts.l pr, @-r15 60 mov.l .L1g1, r1 92 mov.l @r9, r2 94 mov.l @r15, r0 108 mov.l r2, @r15 130 mov.l @r1, r0 [all …]
|
A D | pthread_barrier_wait.S | 29 mov.l r9, @-r15 30 mov.l r8, @-r15 31 sts.l pr, @-r15 102 lds.l @r15+, pr 103 mov.l @r15+, r8 105 mov.l @r15+, r9 115 mov.l .Lall, r6 144 lds.l @r15+, pr 145 mov.l @r15+, r8 147 mov.l @r15+, r9 [all …]
|
A D | pthread_rwlock_timedrdlock.S | 33 mov.l r12, @-r15 34 mov.l r10, @-r15 35 mov.l r9, @-r15 36 mov.l r8, @-r15 37 sts.l pr, @-r15 64 mov.l .L1g0, r1 96 mov.l @r9, r2 98 mov.l @r15, r0 112 mov.l r2, @r15 134 mov.l @r1, r0 [all …]
|
A D | pthread_cond_broadcast.S | 36 mov.l r9, @-r15 37 mov.l r8, @-r15 38 sts.l pr, @-r15 110 mov.l @r1, r5 141 lds.l @r15+, pr 142 mov.l @r15+, r8 143 mov.l @r15+, r9 158 lds.l @r15+, pr 159 mov.l @r15+, r8 160 mov.l @r15+, r9 [all …]
|
A D | sem_trywait.S | 30 mov.l r12, @-r15 31 mov.l r8, @-r15 32 sts.l pr, @-r15 34 mov.l @r8, r0 46 lds.l @r15+, pr 47 mov.l @r15+, r8 48 mov.l @r15+, r12 74 mov.l r8, @r0 75 lds.l @r15+, pr 76 mov.l @r15+, r8 [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/h8300/ |
A D | clone.S | 24 mov.l #-EINVAL,er3 32 mov.l er3,@-er1 36 mov.l er1,er0 41 mov.l er0,er0 48 neg.l er0 49 mov.l er0,@-sp 56 mov.l @sp,er1 57 mov.l er1,@er0 58 sub.l er0,er0 59 dec.l #1,er0 [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/include/ |
A D | ctype.h | 380 # define isalnum_l(c,l) __isalnum_l ((c), (l)) 381 # define isalpha_l(c,l) __isalpha_l ((c), (l)) 382 # define iscntrl_l(c,l) __iscntrl_l ((c), (l)) 383 # define isdigit_l(c,l) __isdigit_l ((c), (l)) 384 # define islower_l(c,l) __islower_l ((c), (l)) 385 # define isgraph_l(c,l) __isgraph_l ((c), (l)) 386 # define isprint_l(c,l) __isprint_l ((c), (l)) 387 # define ispunct_l(c,l) __ispunct_l ((c), (l)) 388 # define isspace_l(c,l) __isspace_l ((c), (l)) 389 # define isupper_l(c,l) __isupper_l ((c), (l)) [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/sysdeps/unix/sysv/linux/sh/ |
A D | sysdep-cancel.h | 107 mov.l 1f,r12; \ 110 mov.l 2f,r0; \ 122 mov.l 1f,r12; \ 125 mov.l 2f,r0; \ 136 mov.l 1f,r0; \ 146 mov.l 1f,r0; \ 167 mov.l 1f,r0; \ 168 mov.l @r0,r0; \ 189 mov.l 0f,r12; \ 192 mov.l 1f,r0; \ [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/sysdeps/unix/sysv/linux/m68k/ |
A D | sysdep-cancel.h | 33 cmp.l &-4095, %d0; \ 39 move.l %d0, -(%sp); \ 42 move.l %d0, %d2; \ 44 addq.l &4, %sp; \ 45 move.l %d2, %d0; \ 47 cmp.l &-4095, %d0; \ 50 # define DOCARGS_0 move.l %d2, -(%sp); 59 # define _DOCARGS_2(n) move.l %d2, -(%sp); move.l n+4(%sp), %d2; \ 64 # define _DOCARGS_3(n) move.l %d3, -(%sp); move.l n+4(%sp), %d3; \ 69 # define _DOCARGS_4(n) move.l %d4, -(%sp); move.l n+4(%sp), %d4; \ [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/ldso/sh/ |
A D | resolve.S | 12 mov.l r3, @-r15 13 mov.l r4, @-r15 14 mov.l r5, @-r15 15 mov.l r6, @-r15 16 mov.l r7, @-r15 17 mov.l r12, @-r15 19 mov.l r3, @-r15 22 sts.l fpscr, @-r15 35 sts.l pr, @-r15 59 mov.l .LG, r5 [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/ |
A D | tst-mqueue8.c | 124 for (long l = TF_MQ_RECEIVE; l <= TF_MQ_TIMEDSEND; ++l) in do_test() local 131 printf ("1st %s create failed\n", names[l]); in do_test() 151 printf ("1st cancel of %s failed\n", names[l]); in do_test() 159 printf ("1st join of %s failed\n", names[l]); in do_test() 165 printf ("1st %s thread not canceled\n", names[l]); in do_test() 189 printf ("2nd %s create failed\n", names[l]); in do_test() 194 printf ("going to cancel %s early\n", names[l]); in do_test() 197 printf ("2nd cancel of %s failed\n", names[l]); in do_test() 212 printf ("2nd join of %s failed\n", names[l]); in do_test() 218 printf ("2nd %s thread not canceled\n", names[l]); in do_test() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sh/ |
A D | crt1.S | 52 mov.l @r15+,r5 56 mov.l r6,@-r15 57 mov.l r4,@-r15 61 mov.l L_got, r12 64 mov.l L_fini,r0 66 mov.l r0,@-r15 69 mov.l L_main, r4 87 mov.l L_fini,r0 88 mov.l r0,@-r15 91 mov.l L_main,r4 [all …]
|
A D | sysdep.h | 146 mov.l 0f,r1; \ 158 mov.l 0f,r12; \ 161 mov.l 1f,r0; \ 181 mov.l 0f,r12; \ 184 mov.l 1f,r0; \ 193 mov.l r1,@r0; \ 205 mov.l 0f,r12; \ 210 mov.l 1f,r1; \ 216 mov.l r1,@r0; \ 233 mov.l 0f,r12; \ [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdlib/malloc-simple/ |
A D | alloc.c | 141 struct alignlist *l; in __libc_free_aligned() local 147 for (l = _aligned_blocks; l != NULL; l = l->next) { in __libc_free_aligned() 148 if (l->aligned == ptr) { in __libc_free_aligned() 150 l->aligned = NULL; in __libc_free_aligned() 151 ptr = l->exact; in __libc_free_aligned() 181 struct alignlist *l; in memalign() local 183 for (l = _aligned_blocks; l != NULL; l = l->next) in memalign() 187 if (l == NULL) { in memalign() 189 if (l == NULL) { in memalign() 195 _aligned_blocks = l; in memalign() [all …]
|