/external/openssh/openbsd-compat/ |
getcwd.c | 135 char *nup; local 137 if ((nup = realloc(up, upsize *= 2)) == NULL) 139 bup = nup + (bup - up); 140 up = nup;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
lauxlib.c | 828 const luaL_Reg *l, int nup) {
832 lua_insert(L, -(nup + 1)); /* move library table to below upvalues */
835 luaL_setfuncs(L, l, nup);
837 lua_pop(L, nup); /* remove upvalues */
844 ** set functions from list 'l' into table at top - 'nup'; each
845 ** function gets the 'nup' elements at the top as upvalues.
848 LUALIB_API void luaL_setfuncs (lua_State *L, const luaL_Reg *l, int nup) {
850 luaL_checkstack(L, nup, "too many upvalues");
853 for (i = 0; i < nup; i++) /* copy upvalues to the top */
854 lua_pushvalue(L, -nup);
[all...] |
ldblib.c | 230 int nup = luaL_checkint(L, argnup);
local 234 luaL_argcheck(L, 1 <= nup && nup <= ar.nups, argnup, "invalid upvalue index");
235 return nup;
|
lvm.c | 382 int nup = p->sizeupvalues; local 385 for (i = 0; i < nup; i++) { /* check whether it has right upvalues */ 403 int nup = p->sizeupvalues; local 406 Closure *ncl = luaF_newLclosure(L, nup); 409 for (i = 0; i < nup; i++) { /* fill in its upvalues */
|
/external/lua/src/ |
lauxlib.c | 914 const luaL_Reg *l, int nup) { 918 lua_insert(L, -(nup + 1)); /* move library table to below upvalues */ 921 luaL_setfuncs(L, l, nup); 923 lua_pop(L, nup); /* remove upvalues */ 930 ** set functions from list 'l' into table at top - 'nup'; each 931 ** function gets the 'nup' elements at the top as upvalues. 934 LUALIB_API void luaL_setfuncs (lua_State *L, const luaL_Reg *l, int nup) { 935 luaL_checkstack(L, nup, "too many upvalues"); 938 for (i = 0; i < nup; i++) /* copy upvalues to the top */ 939 lua_pushvalue(L, -nup); [all...] |
ldblib.c | 276 int nup = (int)luaL_checkinteger(L, argnup); /* upvalue index */ local 278 luaL_argcheck(L, (lua_getupvalue(L, argf, nup) != NULL), argnup, 280 return nup;
|
lauxlib.h | 99 LUALIB_API void (luaL_setfuncs) (lua_State *L, const luaL_Reg *l, int nup); 208 const luaL_Reg *l, int nup);
|
lvm.c | 613 int nup = p->sizeupvalues; local 616 for (i = 0; i < nup; i++) { /* check whether it has right upvalues */ 634 int nup = p->sizeupvalues; local 637 LClosure *ncl = luaF_newLclosure(L, nup); 640 for (i = 0; i < nup; i++) { /* fill in its upvalues */ [all...] |
/device/linaro/bootloader/edk2/StdLib/Include/Lua/ |
lauxlib.h | 91 LUALIB_API void (luaL_setfuncs) (lua_State *L, const luaL_Reg *l, int nup);
203 const luaL_Reg *l, int nup);
|
/build/blueprint/ |
context_test.go | 207 t.Errorf("unexpected walkDeps behaviour: %s\nup should be: BEGFC", outputUp) 299 t.Errorf("unexpected walkDeps behaviour: %s\nup should be: BHGEGGFC", outputUp)
|