/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/skia/third_party/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;
|
lauxlib.h | 91 LUALIB_API void (luaL_setfuncs) (lua_State *L, const luaL_Reg *l, int nup); 203 const luaL_Reg *l, int 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/syslinux/com32/lua/src/ |
lauxlib.c | 830 const luaL_Reg *l, int nup) { 834 lua_insert(L, -(nup + 1)); /* move library table to below upvalues */ 837 luaL_setfuncs(L, l, nup); 839 lua_pop(L, nup); /* remove upvalues */ 846 ** set functions from list 'l' into table at top - 'nup'; each 847 ** function gets the 'nup' elements at the top as upvalues. 850 LUALIB_API void luaL_setfuncs (lua_State *L, const luaL_Reg *l, int nup) { 852 luaL_checkstack(L, nup, "too many upvalues"); 855 for (i = 0; i < nup; i++) /* copy upvalues to the top */ 856 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;
|
lauxlib.h | 91 LUALIB_API void (luaL_setfuncs) (lua_State *L, const luaL_Reg *l, int nup); 203 const luaL_Reg *l, int nup);
|
lvm.c | 405 int nup = p->sizeupvalues; local 408 for (i = 0; i < nup; i++) { /* check whether it has right upvalues */ 426 int nup = p->sizeupvalues; local 429 Closure *ncl = luaF_newLclosure(L, nup); 432 for (i = 0; i < nup; i++) { /* fill in its upvalues */
|
/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 | 201 t.Fatalf("unexpected walkDeps behaviour: %s\nup should be: GFC", outputUp)
|