Lines Matching refs:new
123 hentry_t *new; in add_fcall() local
148 new = (hentry_t *)my_malloc(sizeof (hentry_t), NULL); in add_fcall()
149 new->key = strdup(key); in add_fcall()
150 if (new->key == NULL) in add_fcall()
152 new->lib = strdup(lib); in add_fcall()
153 if (new->lib == NULL) in add_fcall()
155 new->count = cnt; in add_fcall()
156 new->prev = NULL; in add_fcall()
157 new->next = cur->first; in add_fcall()
158 tmp = new->next; in add_fcall()
160 tmp->prev = new; in add_fcall()
162 cur->first = new; in add_fcall()
178 hiter_t *new; in iterate_hash() local
182 new = (hiter_t *)my_malloc(sizeof (hiter_t), NULL); in iterate_hash()
183 new->table = tbl; in iterate_hash()
194 new->next = tmp; in iterate_hash()
195 new->bucket = b; in iterate_hash()
197 return (new); in iterate_hash()