Lines Matching refs:hashp
143 struct sec_merge_hash_entry *hashp; in sec_merge_hash_lookup() local
197 for (hashp = (struct sec_merge_hash_entry *) table->table.table[_index]; in sec_merge_hash_lookup()
198 hashp != NULL; in sec_merge_hash_lookup()
199 hashp = (struct sec_merge_hash_entry *) hashp->root.next) in sec_merge_hash_lookup()
201 if (hashp->root.hash == hash in sec_merge_hash_lookup()
202 && len == hashp->len in sec_merge_hash_lookup()
203 && memcmp (hashp->root.string, string, len) == 0) in sec_merge_hash_lookup()
207 if (hashp->alignment < alignment) in sec_merge_hash_lookup()
212 hashp->len = 0; in sec_merge_hash_lookup()
213 hashp->alignment = 0; in sec_merge_hash_lookup()
217 return hashp; in sec_merge_hash_lookup()
224 hashp = ((struct sec_merge_hash_entry *) in sec_merge_hash_lookup()
226 if (hashp == NULL) in sec_merge_hash_lookup()
228 hashp->len = len; in sec_merge_hash_lookup()
229 hashp->alignment = alignment; in sec_merge_hash_lookup()
230 return hashp; in sec_merge_hash_lookup()