Home | History | Annotate | Download | only in bfd

Lines Matching defs:hashp

142   struct sec_merge_hash_entry *hashp;
196 for (hashp = (struct sec_merge_hash_entry *) table->table.table[_index];
197 hashp != NULL;
198 hashp = (struct sec_merge_hash_entry *) hashp->root.next)
200 if (hashp->root.hash == hash
201 && len == hashp->len
202 && memcmp (hashp->root.string, string, len) == 0)
206 if (hashp->alignment < alignment)
211 hashp->len = 0;
212 hashp->alignment = 0;
216 return hashp;
223 hashp = ((struct sec_merge_hash_entry *)
225 if (hashp == NULL)
227 hashp->len = len;
228 hashp->alignment = alignment;
229 return hashp;