Lines Matching refs:Table

141 static Node *mainposition (const Table *t, int ktt, const Value *kvl) {  in mainposition()
182 static Node *mainpositionTV (const Table *t, const TValue *key) { in mainpositionTV()
241 LUAI_FUNC unsigned int luaH_realasize (const Table *t) { in luaH_realasize()
267 static int ispow2realasize (const Table *t) { in ispow2realasize()
272 static unsigned int setlimittosize (Table *t) { in setlimittosize()
288 static const TValue *getgeneric (Table *t, const TValue *key, int deadok) { in getgeneric()
320 static unsigned int findindex (lua_State *L, Table *t, TValue *key, in findindex()
338 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
360 static void freehash (lua_State *L, Table *t) { in freehash()
418 static unsigned int numusearray (const Table *t, unsigned int *nums) { in numusearray()
445 static int numusehash (const Table *t, unsigned int *nums, unsigned int *pna) { in numusehash()
469 static void setnodevector (lua_State *L, Table *t, unsigned int size) { in setnodevector()
497 static void reinsert (lua_State *L, Table *ot, Table *t) { in reinsert()
516 static void exchangehashpart (Table *t1, Table *t2) { in exchangehashpart()
542 void luaH_resize (lua_State *L, Table *t, unsigned int newasize, in luaH_resize()
545 Table newt; /* to keep the new hash part */ in luaH_resize()
579 void luaH_resizearray (lua_State *L, Table *t, unsigned int nasize) { in luaH_resizearray()
587 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
615 Table *luaH_new (lua_State *L) { in luaH_new()
616 GCObject *o = luaC_newobj(L, LUA_VTABLE, sizeof(Table)); in luaH_new()
617 Table *t = gco2t(o); in luaH_new()
627 void luaH_free (lua_State *L, Table *t) { in luaH_free()
634 static Node *getfreepos (Table *t) { in getfreepos()
654 void luaH_newkey (lua_State *L, Table *t, const TValue *key, TValue *value) { in luaH_newkey()
719 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint()
747 const TValue *luaH_getshortstr (Table *t, TString *key) { in luaH_getshortstr()
763 const TValue *luaH_getstr (Table *t, TString *key) { in luaH_getstr()
777 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get()
800 void luaH_finishset (lua_State *L, Table *t, const TValue *key, in luaH_finishset()
813 void luaH_set (lua_State *L, Table *t, const TValue *key, TValue *value) { in luaH_set()
819 void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) { in luaH_setint()
844 static lua_Unsigned hash_search (Table *t, lua_Unsigned j) { in hash_search()
912 lua_Unsigned luaH_getn (Table *t) { in luaH_getn()
965 Node *luaH_mainposition (const Table *t, const TValue *key) { in luaH_mainposition()
969 int luaH_isdummy (const Table *t) { return isdummy(t); } in luaH_isdummy()