Lines Matching refs:ret
88 struct hash_control *ret; in hash_new_sized() local
90 ret = (struct hash_control *) xmalloc (sizeof *ret); in hash_new_sized()
91 obstack_begin (&ret->memory, chunksize); in hash_new_sized()
93 ret->table = (struct hash_entry **) obstack_alloc (&ret->memory, alloc); in hash_new_sized()
94 memset (ret->table, 0, alloc); in hash_new_sized()
95 ret->size = size; in hash_new_sized()
98 ret->lookups = 0; in hash_new_sized()
99 ret->hash_compares = 0; in hash_new_sized()
100 ret->string_compares = 0; in hash_new_sized()
101 ret->insertions = 0; in hash_new_sized()
102 ret->replacements = 0; in hash_new_sized()
103 ret->deletions = 0; in hash_new_sized()
106 return ret; in hash_new_sized()
277 void *ret; in hash_replace() local
287 ret = p->data; in hash_replace()
291 return ret; in hash_replace()