Lines Matching refs:ret
620 void * ret; in bfd_hash_allocate() local
622 ret = objalloc_alloc ((struct objalloc *) table->memory, size); in bfd_hash_allocate()
623 if (ret == NULL && size != 0) in bfd_hash_allocate()
625 return ret; in bfd_hash_allocate()
728 struct strtab_hash_entry *ret = (struct strtab_hash_entry *) entry; in strtab_hash_newfunc() local
732 if (ret == NULL) in strtab_hash_newfunc()
733 ret = (struct strtab_hash_entry *) bfd_hash_allocate (table, in strtab_hash_newfunc()
734 sizeof (* ret)); in strtab_hash_newfunc()
735 if (ret == NULL) in strtab_hash_newfunc()
739 ret = (struct strtab_hash_entry *) in strtab_hash_newfunc()
740 bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string); in strtab_hash_newfunc()
742 if (ret) in strtab_hash_newfunc()
745 ret->index = (bfd_size_type) -1; in strtab_hash_newfunc()
746 ret->next = NULL; in strtab_hash_newfunc()
749 return (struct bfd_hash_entry *) ret; in strtab_hash_newfunc()
792 struct bfd_strtab_hash *ret; in _bfd_xcoff_stringtab_init() local
794 ret = _bfd_stringtab_init (); in _bfd_xcoff_stringtab_init()
795 if (ret != NULL) in _bfd_xcoff_stringtab_init()
796 ret->xcoff = TRUE; in _bfd_xcoff_stringtab_init()
797 return ret; in _bfd_xcoff_stringtab_init()