Home
last modified time | relevance | path

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

/freebsd/contrib/lua/src/
H A Dlauxlib.c547 static char *prepbuffsize (luaL_Buffer *B, size_t sz, int boxidx) { in prepbuffsize() argument
548 checkbufferlevel(B, boxidx); in prepbuffsize()
557 newbuff = (char *)resizebox(L, boxidx, newsize); /* resize it */ in prepbuffsize()
559 lua_remove(L, boxidx); /* remove placeholder */ in prepbuffsize()
561 lua_insert(L, boxidx); /* move box to its intended position */ in prepbuffsize()
562 lua_toclose(L, boxidx); in prepbuffsize()
563 newbuff = (char *)resizebox(L, boxidx, newsize); in prepbuffsize()