Searched refs:luaM_malloc_ (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/lua/src/ |
H A D | lmem.h | 59 #define luaM_new(L,t) cast(t*, luaM_malloc_(L, sizeof(t), 0)) 60 #define luaM_newvector(L,n,t) cast(t*, luaM_malloc_(L, (n)*sizeof(t), 0)) 64 #define luaM_newobject(L,tag,s) luaM_malloc_(L, (s), tag) 90 LUAI_FUNC void *luaM_malloc_ (lua_State *L, size_t size, int tag);
|
H A D | lmem.c | 201 void *luaM_malloc_ (lua_State *L, size_t size, int tag) { in luaM_malloc_() function
|