luaM_realloc_      21 lib/lua/lmem.h 		luaM_realloc_(L, (b), (on)*(e), (n)*(e)) : \
luaM_realloc_      24 lib/lua/lmem.h #define luaM_freemem(L, b, s)	luaM_realloc_(L, (b), (s), 0)
luaM_realloc_      25 lib/lua/lmem.h #define luaM_free(L, b)		luaM_realloc_(L, (b), sizeof(*(b)), 0)
luaM_realloc_      28 lib/lua/lmem.h #define luaM_malloc(L,t)	luaM_realloc_(L, NULL, 0, (t))
luaM_realloc_      41 lib/lua/lmem.h LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,