Lines Matching defs:t

51 #define hashpow2(t,n)		(gnode(t, lmod((n), sizenode(t))))  argument
53 #define hashstr(t,str) hashpow2(t, (str)->tsv.hash) argument
54 #define hashboolean(t,p) hashpow2(t, p) argument
61 #define hashmod(t,n) (gnode(t, ((n) % ((sizenode(t)-1)|1)))) argument
64 #define hashpointer(t,p) hashmod(t, IntPoint(p)) argument
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()
369 Table *t = &luaC_newobj(L, LUA_TTABLE, sizeof(Table), NULL, 0)->h; in luaH_new() local
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()
511 TValue *luaH_set (lua_State *L, Table *t, const TValue *key) { in luaH_set()
519 void luaH_setint (lua_State *L, Table *t, int key, TValue *value) { in luaH_setint()
533 static int unbound_search (Table *t, unsigned int j) { in unbound_search()
561 int luaH_getn (Table *t) { in luaH_getn()
583 Node *luaH_mainposition (const Table *t, const TValue *key) { in luaH_mainposition()