Lines Matching defs:L
30 #define luaM_reallocv(L,b,on,n,e) \ argument
38 #define luaM_reallocvchar(L,b,on,n) \ argument
41 #define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0) argument
42 #define luaM_free(L, b) luaM_realloc_(L, (b), sizeof(*(b)), 0) argument
43 #define luaM_freearray(L, b, n) luaM_realloc_(L, (b), (n)*sizeof(*(b)), 0) argument
45 #define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s)) argument
46 #define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t))) argument
47 #define luaM_newvector(L,n,t) \ argument
50 #define luaM_newobject(L,tag,s) luaM_realloc_(L, NULL, tag, (s)) argument
52 #define luaM_growvector(L,v,nelems,size,t,limit,e) \ argument
56 #define luaM_reallocvector(L, v,oldn,n,t) \ argument