Lines Matching refs:lua_Integer
62 lua_Integer e = aux_getn(L, 1, TAB_RW) + 1; /* first empty element */ in tinsert()
63 lua_Integer pos; /* where to insert new element */ in tinsert()
70 lua_Integer i; in tinsert()
91 lua_Integer size = aux_getn(L, 1, TAB_RW); in tremove()
92 lua_Integer pos = luaL_optinteger(L, 2, size); in tremove()
115 lua_Integer f = luaL_checkinteger(L, 2); in tmove()
116 lua_Integer e = luaL_checkinteger(L, 3); in tmove()
117 lua_Integer t = luaL_checkinteger(L, 4); in tmove()
122 lua_Integer n, i; in tmove()
146 static void addfield (lua_State *L, luaL_Buffer *b, lua_Integer i) { in addfield()
157 lua_Integer last = aux_getn(L, 1, TAB_R); in tconcat()
160 lua_Integer i = luaL_optinteger(L, 3, 1); in tconcat()
195 lua_Integer i = luaL_optinteger(L, 2, 1); in tunpack()
196 lua_Integer e = luaL_opt(L, luaL_checkinteger, 3, luaL_len(L, 1)); in tunpack()
398 lua_Integer n = aux_getn(L, 1, TAB_RW); in sort()