Home
last modified time | relevance | path

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

/external/giflib/
Dgif_hash.c65 int HKey = KeyItem(Key); in _InsertHashTable() local
73 while (HT_GET_KEY(HTable[HKey]) != 0xFFFFFL) { in _InsertHashTable()
77 HKey = (HKey + 1) & HT_KEY_MASK; in _InsertHashTable()
79 HTable[HKey] = HT_PUT_KEY(Key) | HT_PUT_CODE(Code); in _InsertHashTable()
88 int HKey = KeyItem(Key); in _ExistsHashTable() local
96 while ((HTKey = HT_GET_KEY(HTable[HKey])) != 0xFFFFFL) { in _ExistsHashTable()
100 if (Key == HTKey) return HT_GET_CODE(HTable[HKey]); in _ExistsHashTable()
101 HKey = (HKey + 1) & HT_KEY_MASK; in _ExistsHashTable()