Lines Matching refs:TValue
97 static Node *mainposition (const Table *t, const TValue *key) { in mainposition()
127 static int arrayindex (const TValue *key) { in arrayindex()
218 static int countint (const TValue *key, int *nums) { in countint()
272 luaM_reallocvector(L, t->array, t->sizearray, size, TValue); in setarrayvector()
321 luaM_reallocvector(L, t->array, oldasize, nasize, TValue); in luaH_resize()
343 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
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()
512 const TValue *p = luaH_get(t, key); in luaH_set()
514 return cast(TValue *, p); in luaH_set()
519 void luaH_setint (lua_State *L, Table *t, int key, TValue *value) { in luaH_setint()
520 const TValue *p = luaH_getint(t, key); in luaH_setint()
521 TValue *cell; in luaH_setint()
523 cell = cast(TValue *, p); in luaH_setint()
525 TValue k; in luaH_setint()
583 Node *luaH_mainposition (const Table *t, const TValue *key) { in luaH_mainposition()