Lines Matching refs:Key
63 void _InsertHashTable(GifHashTableType *HashTable, uint32_t Key, int Code)
65 int HKey = KeyItem(Key);
79 HTable[HKey] = HT_PUT_KEY(Key) | HT_PUT_CODE(Code);
83 Routine to test if given Key exists in HashTable and if so returns its code *
84 Returns the Code if key was found, -1 if not. *
86 int _ExistsHashTable(GifHashTableType *HashTable, uint32_t Key)
88 int HKey = KeyItem(Key);
100 if (Key == HTKey) return HT_GET_CODE(HTable[HKey]);
108 Routine to generate an HKey for the hashtable out of the given unique key. *
109 The given Key is assumed to be 20 bits as follows: lower 8 bits are the *