• Home
  • Raw
  • Download

Lines Matching refs:TValue

117 static Node *mainposition (const Table *t, const TValue *key) {  in mainposition()
144 static unsigned int arrayindex (const TValue *key) { in arrayindex()
243 static int countint (const TValue *key, unsigned int *nums) { in countint()
303 luaM_reallocvector(L, t->array, t->sizearray, size, TValue); in setarrayvector()
371 luaM_reallocvector(L, t->array, oldasize, nasize, TValue); in luaH_resize()
395 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
461 TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key) { in luaH_newkey()
463 TValue aux; 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()
543 const TValue *k = gkey(n); 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()
579 TValue ko; 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()
611 const TValue *p = luaH_get(t, key); in luaH_set()
613 return cast(TValue *, p); in luaH_set()
618 void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) { in luaH_setint()
619 const TValue *p = luaH_getint(t, key); in luaH_setint()
620 TValue *cell; in luaH_setint()
622 cell = cast(TValue *, p); in luaH_setint()
624 TValue k; in luaH_setint()
682 Node *luaH_mainposition (const Table *t, const TValue *key) { in luaH_mainposition()