Home
last modified time | relevance | path

Searched refs:HKey (Results 1 – 1 of 1) sorted by relevance

/third_party/giflib/
Dgif_hash.c66 int HKey = KeyItem(Key); in _InsertHashTable() local
74 while (HT_GET_KEY(HTable[HKey]) != 0xFFFFFL) { in _InsertHashTable()
78 HKey = (HKey + 1) & HT_KEY_MASK; in _InsertHashTable()
80 HTable[HKey] = HT_PUT_KEY(Key) | HT_PUT_CODE(Code); in _InsertHashTable()
89 int HKey = KeyItem(Key); in _ExistsHashTable() local
97 while ((HTKey = HT_GET_KEY(HTable[HKey])) != 0xFFFFFL) { in _ExistsHashTable()
101 if (Key == HTKey) return HT_GET_CODE(HTable[HKey]); in _ExistsHashTable()
102 HKey = (HKey + 1) & HT_KEY_MASK; in _ExistsHashTable()