Searched refs:HTable (Results 1 – 2 of 2) sorted by relevance
56 memset(HashTable -> HTable, 0xFF, HT_SIZE * sizeof(uint32_t)); in _ClearHashTable()66 uint32_t *HTable = HashTable -> HTable; in _InsertHashTable() local73 while (HT_GET_KEY(HTable[HKey]) != 0xFFFFFL) { in _InsertHashTable()79 HTable[HKey] = HT_PUT_KEY(Key) | HT_PUT_CODE(Code); in _InsertHashTable()89 uint32_t *HTable = HashTable -> HTable, HTKey; in _ExistsHashTable() local96 while ((HTKey = HT_GET_KEY(HTable[HKey])) != 0xFFFFFL) { in _ExistsHashTable()100 if (Key == HTKey) return HT_GET_CODE(HTable[HKey]); in _ExistsHashTable()
29 uint32_t HTable[HT_SIZE]; member