Home
last modified time | relevance | path

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

/external/lua/src/
Dlauxlib.h158 ((void)((B)->n < (B)->size || luaL_prepbuffsize((B), 1)), \
164 LUALIB_API char *(luaL_prepbuffsize) (luaL_Buffer *B, size_t sz); variable
172 #define luaL_prepbuffer(B) luaL_prepbuffsize(B, LUAL_BUFFERSIZE)
Dlauxlib.c505 LUALIB_API char *luaL_prepbuffsize (luaL_Buffer *B, size_t sz) { in luaL_prepbuffsize() function
530 char *b = luaL_prepbuffsize(B, l); in luaL_addlstring()
579 return luaL_prepbuffsize(B, sz); in luaL_buffinitsize()
Dlstrlib.c952 char *buff = luaL_prepbuffsize(b, MAX_ITEM); in addliteral()
1031 char *buff = luaL_prepbuffsize(&b, MAX_ITEM); /* to put formatted item */ in str_format()
1297 char *buff = luaL_prepbuffsize(b, size); in packint()
1366 char *buff = luaL_prepbuffsize(&b, size); in str_pack()
Dloslib.c312 char *buff = luaL_prepbuffsize(&b, SIZETIMEFMT); in os_date()
Dliolib.c521 p = luaL_prepbuffsize(&b, n); /* prepare buffer to read whole block */ in read_chars()