Home
last modified time | relevance | path

Searched refs:firstArg (Results 1 – 3 of 3) sorted by relevance

/src/sys/contrib/openzfs/module/lua/
H A Dldo.c574 static l_noret resume_error (lua_State *L, const char *msg, StkId firstArg) { in resume_error() argument
575 L->top = firstArg; /* remove args from the stack */ in resume_error()
587 StkId firstArg = cast(StkId, ud); in resume_cb() local
590 resume_error(L, "C stack overflow", firstArg); in resume_cb()
593 resume_error(L, "cannot resume non-suspended coroutine", firstArg); in resume_cb()
595 if (!luaD_precall(L, firstArg - 1, LUA_MULTRET)) /* Lua function? */ in resume_cb()
599 resume_error(L, "cannot resume dead coroutine", firstArg); in resume_cb()
614 firstArg = L->top - n; /* yield results come from continuation */ in resume_cb()
616 luaD_poscall(L, firstArg); /* finish 'luaD_precall' */ in resume_cb()
/src/contrib/lua/src/
H A Dldo.c794 StkId firstArg = L->top.p - n; /* first argument */ in resume() local
797 ccall(L, firstArg - 1, LUA_MULTRET, 0); /* just call its body */ in resume()
806 L->top.p = firstArg; /* discard arguments */ in resume()
/src/contrib/sqlite3/autosetup/
H A Djimsh0.c5733 int firstArg, lastArg; /* Indexes of first and last arguments in in JimCreatePipeline() local
5957 for (firstArg = 0; firstArg < arg_count; numPids++, firstArg = lastArg + 1) { in JimCreatePipeline()
5961 for (lastArg = firstArg; lastArg < arg_count; lastArg++) { in JimCreatePipeline()
5971 if (lastArg == firstArg) { in JimCreatePipeline()
5998 …phandle = JimStartWinProcess(interp, &arg_array[firstArg], save_environ, inputId, outputId, errorI… in JimCreatePipeline()
6000 Jim_SetResultFormatted(interp, "couldn't exec \"%s\"", arg_array[firstArg]); in JimCreatePipeline()
6004 i = strlen(arg_array[firstArg]); in JimCreatePipeline()
6049 execvpe(arg_array[firstArg], &arg_array[firstArg], child_environ); in JimCreatePipeline()
6052 write(fileno(stderr), arg_array[firstArg], i) && in JimCreatePipeline()