HomeSort by relevance Sort by last modified time
    Searched refs:luaM_realloc_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
lmem.h 27 luaM_realloc_(L, (b), (on)*(e), (n)*(e)))
29 #define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0)
30 #define luaM_free(L, b) luaM_realloc_(L, (b), sizeof(*(b)), 0)
33 #define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s))
38 #define luaM_newobject(L,tag,s) luaM_realloc_(L, NULL, tag, (s))
50 LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
lmem.c 75 void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) {

Completed in 175 milliseconds