Lines Matching refs:Table
84 static Node *hashnum (const Table *t, lua_Number n) { in hashnum()
100 static Node *mainposition (const Table *t, const TValue *key) { in mainposition()
137 static int findindex (lua_State *L, Table *t, StkId key) { in findindex()
162 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
222 static int numusearray (const Table *t, int *nums) { in numusearray()
247 static int numusehash (const Table *t, int *nums, int *pnasize) { in numusehash()
263 static void setarrayvector (lua_State *L, Table *t, int size) { in setarrayvector()
272 static void setnodevector (lua_State *L, Table *t, int size) { in setnodevector()
297 static void resize (lua_State *L, Table *t, int nasize, int nhsize) { in resize()
327 void luaH_resizearray (lua_State *L, Table *t, int nasize) { in luaH_resizearray()
333 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
358 Table *luaH_new (lua_State *L, int narray, int nhash) { in luaH_new()
359 Table *t = luaM_new(L, Table); in luaH_new()
374 void luaH_free (lua_State *L, Table *t) { in luaH_free()
382 static Node *getfreepos (Table *t) { in getfreepos()
399 static TValue *newkey (lua_State *L, Table *t, const TValue *key) { in newkey()
435 const TValue *luaH_getnum (Table *t, int key) { in luaH_getnum()
455 const TValue *luaH_getstr (Table *t, TString *key) { in luaH_getstr()
469 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get()
494 TValue *luaH_set (lua_State *L, Table *t, const TValue *key) { in luaH_set()
508 TValue *luaH_setnum (lua_State *L, Table *t, int key) { in luaH_setnum()
520 TValue *luaH_setstr (lua_State *L, Table *t, TString *key) { in luaH_setstr()
532 static int unbound_search (Table *t, unsigned int j) { in unbound_search()
560 int luaH_getn (Table *t) { in luaH_getn()
582 Node *luaH_mainposition (const Table *t, const TValue *key) { in luaH_mainposition()