Home
last modified time | relevance | path

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

/external/giflib/
Dgif_hash.c56 memset(HashTable -> HTable, 0xFF, HT_SIZE * sizeof(uint32_t)); in _ClearHashTable()
66 uint32_t *HTable = HashTable -> HTable; in _InsertHashTable() local
73 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() local
96 while ((HTKey = HT_GET_KEY(HTable[HKey])) != 0xFFFFFL) { in _ExistsHashTable()
100 if (Key == HTKey) return HT_GET_CODE(HTable[HKey]); in _ExistsHashTable()
Dgif_hash.h29 uint32_t HTable[HT_SIZE]; member
/external/rust/crates/ring/src/aead/
Dgcm.rs21 pub struct Key(HTable);
27 let mut key = Self(HTable { in new()
36 fn GFp_gcm_init_avx(HTable: &mut HTable, h: &[u64; 2]); in new() argument
51 fn GFp_gcm_init_clmul(Htable: &mut HTable, h: &[u64; 2]); in new() argument
61 fn GFp_gcm_init_neon(Htable: &mut HTable, h: &[u64; 2]); in new() argument
126 Htable: &HTable, in update_blocks() argument
146 Htable: &HTable, in update_blocks() argument
161 Htable: &HTable, in update_blocks() argument
196 fn GFp_gcm_gmult_clmul(xi: &mut Xi, Htable: &HTable); in update_block() argument
206 fn GFp_gcm_gmult_neon(xi: &mut Xi, Htable: &HTable); in update_block() argument
[all …]