Lines Matching refs:nargs
1145 int nargs=cast_int(L->top-func)-1;
1146 base=adjust_varargs(L,p,nargs);
5753 static void lua_call(lua_State*L,int nargs,int nresults){
5755 api_checknelems(L,nargs+1);
5756 checkresults(L,nargs,nresults);
5757 func=L->top-(nargs+1);
5769 static int lua_pcall(lua_State*L,int nargs,int nresults,int errfunc){
5773 api_checknelems(L,nargs+1);
5774 checkresults(L,nargs,nresults);
5782 c.func=L->top-(nargs+1);
6814 int nargs=lua_gettop(L)-1;
6818 if(nargs==0){
6823 luaL_checkstack(L,nargs+20,"too many arguments");
6825 for(n=first;nargs--&&success;n++){
6883 int nargs=lua_gettop(L)-1;
6885 for(;nargs--;arg++){