Home
last modified time | relevance | path

Searched refs:lua_newuserdatauv (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/lua/src/
H A Dlua.h270 LUA_API void *(lua_newuserdatauv) (lua_State *L, size_t sz, int nuvalue); variable
423 #define lua_newuserdata(L,s) lua_newuserdatauv(L,s,1)
H A Dlmathlib.c643 RanState *state = (RanState *)lua_newuserdatauv(L, sizeof(RanState), 0); in setrandfunc()
H A Dliolib.c202 LStream *p = (LStream *)lua_newuserdatauv(L, sizeof(LStream), 0); in newprefile()
H A Dlauxlib.c502 UBox *box = (UBox *)lua_newuserdatauv(L, sizeof(UBox), 0); in newbox()
H A Dlapi.c1343 LUA_API void *lua_newuserdatauv (lua_State *L, size_t size, int nuvalue) { in lua_newuserdatauv() function
H A Dlstrlib.c861 gm = (GMatchState *)lua_newuserdatauv(L, sizeof(GMatchState), 0); in gmatch()
H A Dltests.c1100 char *p = cast_charp(lua_newuserdatauv(L, size, nuv)); in newuserdata()