Lines Matching refs:TValue

54 #define MAXASIZE	luaM_limitN(1u << MAXABITS, TValue)
101 static const TValue absentkey = {ABSTKEYCONSTANT};
182 static Node *mainpositionTV (const Table *t, const TValue *key) { in mainpositionTV()
207 static int equalkey (const TValue *k1, const Node *n2, int deadok) { in equalkey()
288 static const TValue *getgeneric (Table *t, const TValue *key, int deadok) { in getgeneric()
320 static unsigned int findindex (lua_State *L, Table *t, TValue *key, in findindex()
328 const TValue *n = getgeneric(t, key, 1); in findindex()
505 TValue k; in reinsert()
547 TValue *newarray; in luaH_resize()
562 newarray = luaM_reallocvector(L, t->array, oldasize, newasize, TValue); in luaH_resize()
587 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
654 void luaH_newkey (lua_State *L, Table *t, const TValue *key, TValue *value) { in luaH_newkey()
656 TValue aux; in luaH_newkey()
719 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint()
747 const TValue *luaH_getshortstr (Table *t, TString *key) { in luaH_getshortstr()
763 const TValue *luaH_getstr (Table *t, TString *key) { in luaH_getstr()
767 TValue ko; in luaH_getstr()
777 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get()
800 void luaH_finishset (lua_State *L, Table *t, const TValue *key, in luaH_finishset()
801 const TValue *slot, TValue *value) { in luaH_finishset()
805 setobj2t(L, cast(TValue *, slot), value); in luaH_finishset()
813 void luaH_set (lua_State *L, Table *t, const TValue *key, TValue *value) { in luaH_set()
814 const TValue *slot = luaH_get(t, key); in luaH_set()
819 void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) { in luaH_setint()
820 const TValue *p = luaH_getint(t, key); in luaH_setint()
822 TValue k; in luaH_setint()
827 setobj2t(L, cast(TValue *, p), value); in luaH_setint()
869 static unsigned int binsearch (const TValue *array, unsigned int i, in binsearch()
965 Node *luaH_mainposition (const Table *t, const TValue *key) { in luaH_mainposition()