Lines Matching refs:lua_Integer
62 lua_Integer pos; /* where to insert new element */ in tinsert()
63 lua_Integer e = aux_getn(L, 1, TAB_RW); in tinsert()
71 lua_Integer i; in tinsert()
92 lua_Integer size = aux_getn(L, 1, TAB_RW); in tremove()
93 lua_Integer pos = luaL_optinteger(L, 2, size); in tremove()
116 lua_Integer f = luaL_checkinteger(L, 2); in tmove()
117 lua_Integer e = luaL_checkinteger(L, 3); in tmove()
118 lua_Integer t = luaL_checkinteger(L, 4); in tmove()
123 lua_Integer n, i; in tmove()
147 static void addfield (lua_State *L, luaL_Buffer *b, lua_Integer i) { in addfield()
158 lua_Integer last = aux_getn(L, 1, TAB_R); in tconcat()
161 lua_Integer i = luaL_optinteger(L, 3, 1); in tconcat()
196 lua_Integer i = luaL_optinteger(L, 2, 1); in tunpack()
197 lua_Integer e = luaL_opt(L, luaL_checkinteger, 3, luaL_len(L, 1)); in tunpack()
400 lua_Integer n = aux_getn(L, 1, TAB_RW); in sort()