Searched refs:luaL_prepbuffsize (Results 1 – 5 of 5) sorted by relevance
/external/lua/src/ |
D | lauxlib.h | 158 ((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)
|
D | lauxlib.c | 505 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()
|
D | lstrlib.c | 952 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()
|
D | loslib.c | 312 char *buff = luaL_prepbuffsize(&b, SIZETIMEFMT); in os_date()
|
D | liolib.c | 521 p = luaL_prepbuffsize(&b, n); /* prepare buffer to read whole block */ in read_chars()
|