Home | History | Annotate | Download | only in bfd

Lines Matching defs:hashp

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