Searched refs:luatyp (Results 1 – 1 of 1) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | if_lua.c | 532 #define luaV_unbox(L,luatyp,ud) (*((luatyp *) lua_touserdata((L),(ud)))) argument 534 #define luaV_checkvalid(L,luatyp,ud) \ argument 535 luaV_checkcache((L), (void *) luaV_unbox((L),luatyp,(ud))) 816 #define luaV_newtype(typ,tname,luatyp,luatname) \ argument 817 static luatyp * \ 820 luatyp *o = (luatyp *) lua_newuserdata(L, sizeof(luatyp)); \ 828 #define luaV_pushtype(typ,tname,luatyp) \ argument 829 static luatyp * \ 832 luatyp *o = NULL; \ 843 o = (luatyp *) lua_touserdata(L, -1); \
|