Lines Matching refs:rval
51 struct string_list *rval; in new_string_list() local
53 rval = calloc(1, sizeof(struct string_list) + size); in new_string_list()
54 if (rval != NULL) in new_string_list()
55 rval->string = ((char *)rval) + sizeof(struct string_list); in new_string_list()
56 return (rval); in new_string_list()
62 struct hash_table *rval; in new_hash_table() local
64 rval = calloc(1, sizeof(struct hash_table) - in new_hash_table()
67 if (rval == NULL) in new_hash_table()
69 rval->hash_count = count; in new_hash_table()
70 return (rval); in new_hash_table()
76 struct hash_bucket *rval = calloc(1, sizeof(struct hash_bucket)); in new_hash_bucket() local
78 return (rval); in new_hash_bucket()