Searched refs:nargs (Results 1 – 7 of 7) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/bits/ |
A D | syscalls-common.h | 95 #define SYSCALL_FUNC(nargs, type, name, args...) \ argument 96 type name(C_DECL_ARGS_##nargs(args)) { \ 97 return (type)INLINE_SYSCALL(name, nargs, C_ARGS_##nargs(args)); \ 100 #define SYSCALL_NOERR_FUNC(nargs, type, name, args...) \ argument 101 type name(C_DECL_ARGS_##nargs(args)) { \ 102 return (type)INLINE_SYSCALL_NOERR(name, nargs, C_ARGS_##nargs(args)); \
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/c6x/bits/ |
A D | syscalls.h | 160 #define SYSCALL_FUNC(nargs, type, name, args...) \ argument 161 type name(C_DECL_ARGS_##nargs(args)) { \ 162 return (type)INLINE_SYSCALL(name, nargs, C_ARGS_##nargs(args)); \ 165 #define SYSCALL_NOERR_FUNC(nargs, type, name, args...) \ argument 166 type name(C_DECL_ARGS_##nargs(args)) { \ 167 return (type)INLINE_SYSCALL_NOERR(name, nargs, C_ARGS_##nargs(args)); \
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/xtensa/bits/ |
A D | syscalls.h | 36 #define DO_CALL(syscall_name, nargs) \ argument 37 DO_ARGS_##nargs \
|
/l4re-core-master/lua/lib/contrib/src/ |
A D | ldo.c | 773 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs, in lua_resume() argument 779 return resume_error(L, "cannot resume non-suspended coroutine", nargs); in lua_resume() 780 else if (L->top - (L->ci->func + 1) == nargs) /* no function? */ in lua_resume() 781 return resume_error(L, "cannot resume dead coroutine", nargs); in lua_resume() 784 return resume_error(L, "cannot resume dead coroutine", nargs); in lua_resume() 786 luai_userstateresume(L, nargs); in lua_resume() 787 api_checknelems(L, (L->status == LUA_OK) ? nargs + 1 : nargs); in lua_resume() 788 status = luaD_rawrunprotected(L, resume, &nargs); in lua_resume()
|
A D | liolib.c | 567 int nargs = lua_gettop(L) - 1; in g_read() local 570 if (nargs == 0) { /* no arguments? */ in g_read() 576 luaL_checkstack(L, nargs+LUA_MINSTACK, "too many arguments"); in g_read() 578 for (n = first; nargs-- && success; n++) { in g_read() 661 int nargs = lua_gettop(L) - arg; in g_write() local 663 for (; nargs--; arg++) { in g_write()
|
A D | lapi.c | 997 LUA_API void lua_callk (lua_State *L, int nargs, int nresults, in lua_callk() argument 1003 api_checknelems(L, nargs+1); in lua_callk() 1005 checkresults(L, nargs, nresults); in lua_callk() 1006 func = L->top - (nargs+1); in lua_callk() 1036 LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, in lua_pcallk() argument 1044 api_checknelems(L, nargs+1); in lua_pcallk() 1046 checkresults(L, nargs, nresults); in lua_pcallk() 1054 c.func = L->top - (nargs+1); /* function to be called */ in lua_pcallk()
|
A D | lua.h | 281 LUA_API void (lua_callk) (lua_State *L, int nargs, int nresults, 285 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
|
Completed in 15 milliseconds