Lines Matching defs:L

30 #define Index(L,i)	((i) >= 0 ? (L->Cbase+((i)-1)) : (L->top+(i)))  argument
32 #define api_incr_top(L) incr_top argument
37 TObject *luaA_index (lua_State *L, int index) { in luaA_index()
42 static TObject *luaA_indexAcceptable (lua_State *L, int index) { in luaA_indexAcceptable()
52 void luaA_pushobject (lua_State *L, const TObject *o) { in luaA_pushobject()
57 LUA_API int lua_stackspace (lua_State *L) { in lua_stackspace()
68 LUA_API int lua_gettop (lua_State *L) { in lua_gettop()
73 LUA_API void lua_settop (lua_State *L, int index) { in lua_settop()
81 LUA_API void lua_remove (lua_State *L, int index) { in lua_remove()
88 LUA_API void lua_insert (lua_State *L, int index) { in lua_insert()
97 LUA_API void lua_pushvalue (lua_State *L, int index) { in lua_pushvalue()
109 LUA_API int lua_type (lua_State *L, int index) { in lua_type()
114 LUA_API const char *lua_typename (lua_State *L, int t) { in lua_typename()
120 LUA_API int lua_iscfunction (lua_State *L, int index) { in lua_iscfunction()
125 LUA_API int lua_isnumber (lua_State *L, int index) { in lua_isnumber()
130 LUA_API int lua_isstring (lua_State *L, int index) { in lua_isstring()
136 LUA_API int lua_tag (lua_State *L, int index) { in lua_tag()
141 LUA_API int lua_equal (lua_State *L, int index1, int index2) { in lua_equal()
148 LUA_API int lua_lessthan (lua_State *L, int index1, int index2) { in lua_lessthan()
157 LUA_API long lua_tonumber (lua_State *L, int index) { in lua_tonumber()
162 LUA_API const char *lua_tostring (lua_State *L, int index) { in lua_tostring()
167 LUA_API size_t lua_strlen (lua_State *L, int index) { in lua_strlen()
172 LUA_API lua_CFunction lua_tocfunction (lua_State *L, int index) { in lua_tocfunction()
177 LUA_API void *lua_touserdata (lua_State *L, int index) { in lua_touserdata()
183 LUA_API const void *lua_topointer (lua_State *L, int index) { in lua_topointer()
202 LUA_API void lua_pushnil (lua_State *L) { in lua_pushnil()
208 LUA_API void lua_pushnumber (lua_State *L, long n) { in lua_pushnumber()
215 LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) { in lua_pushlstring()
222 LUA_API void lua_pushstring (lua_State *L, const char *s) { in lua_pushstring()
230 LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { in lua_pushcclosure()
235 LUA_API void lua_pushusertag (lua_State *L, void *u, int tag) { in lua_pushusertag()
251 LUA_API void lua_getglobal (lua_State *L, const char *name) { in lua_getglobal()
259 LUA_API void lua_gettable (lua_State *L, int index) { in lua_gettable()
267 LUA_API void lua_rawget (lua_State *L, int index) { in lua_rawget()
274 LUA_API void lua_rawgeti (lua_State *L, int index, int n) { in lua_rawgeti()
282 LUA_API void lua_getglobals (lua_State *L) { in lua_getglobals()
289 LUA_API int lua_getref (lua_State *L, int ref) { in lua_getref()
302 LUA_API void lua_newtable (lua_State *L) { in lua_newtable()
315 LUA_API void lua_setglobal (lua_State *L, const char *name) { in lua_setglobal()
322 LUA_API void lua_settable (lua_State *L, int index) { in lua_settable()
330 LUA_API void lua_rawset (lua_State *L, int index) { in lua_rawset()
338 LUA_API void lua_rawseti (lua_State *L, int index, int n) { in lua_rawseti()
346 LUA_API void lua_setglobals (lua_State *L) { in lua_setglobals()
353 LUA_API int lua_ref (lua_State *L, int lock) { in lua_ref()
381 LUA_API void lua_rawcall (lua_State *L, int nargs, int nresults) { in lua_rawcall()
394 LUA_API int lua_getgcthreshold (lua_State *L) { in lua_getgcthreshold()
398 LUA_API int lua_getgccount (lua_State *L) { in lua_getgccount()
402 LUA_API void lua_setgcthreshold (lua_State *L, int newthreshold) { in lua_setgcthreshold()
415 LUA_API void lua_settag (lua_State *L, int tag) { in lua_settag()
431 LUA_API void lua_unref (lua_State *L, int ref) { in lua_unref()
440 LUA_API int lua_next (lua_State *L, int index) { in lua_next()
458 LUA_API int lua_getn (lua_State *L, int index) { in lua_getn()
479 LUA_API void lua_concat (lua_State *L, int n) { in lua_concat()
487 LUA_API void *lua_newuserdata (lua_State *L, size_t size) { in lua_newuserdata()