Lines Matching refs:Table
117 static Node *mainposition (const Table *t, const TValue *key) { in mainposition()
159 static unsigned int findindex (lua_State *L, Table *t, StkId key) { in findindex()
186 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
259 static unsigned int numusearray (const Table *t, unsigned int *nums) { in numusearray()
285 static int numusehash (const Table *t, unsigned int *nums, unsigned int *pna) { in numusehash()
301 static void setarrayvector (lua_State *L, Table *t, unsigned int size) { in setarrayvector()
310 static void setnodevector (lua_State *L, Table *t, unsigned int size) { in setnodevector()
336 Table *t;
347 void luaH_resize (lua_State *L, Table *t, unsigned int nasize, in luaH_resize()
387 void luaH_resizearray (lua_State *L, Table *t, unsigned int nasize) { in luaH_resizearray()
395 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
421 Table *luaH_new (lua_State *L) { in luaH_new()
422 GCObject *o = luaC_newobj(L, LUA_TTABLE, sizeof(Table)); in luaH_new()
423 Table *t = gco2t(o); in luaH_new()
433 void luaH_free (lua_State *L, Table *t) { in luaH_free()
441 static Node *getfreepos (Table *t) { in getfreepos()
461 TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key) { in luaH_newkey()
516 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint()
539 const TValue *luaH_getshortstr (Table *t, TString *key) { in luaH_getshortstr()
560 static const TValue *getgeneric (Table *t, const TValue *key) { in getgeneric()
575 const TValue *luaH_getstr (Table *t, TString *key) { in luaH_getstr()
589 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get()
610 TValue *luaH_set (lua_State *L, Table *t, const TValue *key) { in luaH_set()
618 void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) { in luaH_setint()
632 static lua_Unsigned unbound_search (Table *t, lua_Unsigned j) { in unbound_search()
660 lua_Unsigned luaH_getn (Table *t) { in luaH_getn()
682 Node *luaH_mainposition (const Table *t, const TValue *key) { in luaH_mainposition()
686 int luaH_isdummy (const Table *t) { return isdummy(t); } in luaH_isdummy()