Lines Matching refs:Table
125 static Node *mainposition (const Table *t, const TValue *key) { in mainposition()
174 static unsigned int findindex (lua_State *L, Table *t, StkId key) { in findindex()
201 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
272 static unsigned int numusearray (const Table *t, unsigned int *nums) { in numusearray()
298 static int numusehash (const Table *t, unsigned int *nums, unsigned int *pna) { in numusehash()
314 static void setarrayvector (lua_State *L, Table *t, unsigned int size) { in setarrayvector()
323 static void setnodevector (lua_State *L, Table *t, unsigned int size) { in setnodevector()
348 void luaH_resize (lua_State *L, Table *t, unsigned int nasize, in luaH_resize()
383 void luaH_resizearray (lua_State *L, Table *t, unsigned int nasize) { in luaH_resizearray()
391 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
417 Table *luaH_new (lua_State *L) { in luaH_new()
418 GCObject *o = luaC_newobj(L, LUA_TTABLE, sizeof(Table)); in luaH_new()
419 Table *t = gco2t(o); in luaH_new()
429 void luaH_free (lua_State *L, Table *t) { in luaH_free()
437 static Node *getfreepos (Table *t) { in getfreepos()
455 TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key) { in luaH_newkey()
514 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint()
537 const TValue *luaH_getstr (Table *t, TString *key) { in luaH_getstr()
557 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get()
591 TValue *luaH_set (lua_State *L, Table *t, const TValue *key) { in luaH_set()
599 void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) { in luaH_setint()
613 static int unbound_search (Table *t, unsigned int j) { in unbound_search()
641 int luaH_getn (Table *t) { in luaH_getn()
663 Node *luaH_mainposition (const Table *t, const TValue *key) { in luaH_mainposition()