• Home
  • Raw
  • Download

Lines Matching refs:Table

80 static Node *hashnum (const Table *t, lua_Number n) {  in hashnum()
97 static Node *mainposition (const Table *t, const TValue *key) { in mainposition()
144 static int findindex (lua_State *L, Table *t, StkId key) { in findindex()
169 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next()
229 static int numusearray (const Table *t, int *nums) { in numusearray()
254 static int numusehash (const Table *t, int *nums, int *pnasize) { in numusehash()
270 static void setarrayvector (lua_State *L, Table *t, int size) { in setarrayvector()
279 static void setnodevector (lua_State *L, Table *t, int size) { in setnodevector()
304 void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize) { in luaH_resize()
337 void luaH_resizearray (lua_State *L, Table *t, int nasize) { in luaH_resizearray()
343 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
368 Table *luaH_new (lua_State *L) { in luaH_new()
369 Table *t = &luaC_newobj(L, LUA_TTABLE, sizeof(Table), NULL, 0)->h; in luaH_new()
379 void luaH_free (lua_State *L, Table *t) { in luaH_free()
387 static Node *getfreepos (Table *t) { in getfreepos()
405 TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key) { in luaH_newkey()
446 const TValue *luaH_getint (Table *t, int key) { in luaH_getint()
466 const TValue *luaH_getstr (Table *t, TString *key) { in luaH_getstr()
481 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get()
510 TValue *luaH_set (lua_State *L, Table *t, const TValue *key) { in luaH_set()
518 void luaH_setint (lua_State *L, Table *t, int key, TValue *value) { in luaH_setint()
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()