Lines Matching refs:hashp
141 struct sec_merge_hash_entry *hashp; in sec_merge_hash_lookup() local
195 for (hashp = (struct sec_merge_hash_entry *) table->table.table[_index]; in sec_merge_hash_lookup()
196 hashp != NULL; in sec_merge_hash_lookup()
197 hashp = (struct sec_merge_hash_entry *) hashp->root.next) in sec_merge_hash_lookup()
199 if (hashp->root.hash == hash in sec_merge_hash_lookup()
200 && len == hashp->len in sec_merge_hash_lookup()
201 && memcmp (hashp->root.string, string, len) == 0) in sec_merge_hash_lookup()
205 if (hashp->alignment < alignment) in sec_merge_hash_lookup()
210 hashp->len = 0; in sec_merge_hash_lookup()
211 hashp->alignment = 0; in sec_merge_hash_lookup()
215 return hashp; in sec_merge_hash_lookup()
222 hashp = ((struct sec_merge_hash_entry *) in sec_merge_hash_lookup()
224 if (hashp == NULL) in sec_merge_hash_lookup()
226 hashp->len = len; in sec_merge_hash_lookup()
227 hashp->alignment = alignment; in sec_merge_hash_lookup()
228 return hashp; in sec_merge_hash_lookup()