Home
last modified time | relevance | path

Searched refs:matched_ent (Results 1 – 2 of 2) sorted by relevance

/external/bison/lib/
Dhash.h102 const void **matched_ent) _GL_ATTRIBUTE_DEPRECATED;
104 const void **matched_ent);
Dhash.c1039 void const **matched_ent) in hash_insert_if_absent() argument
1053 if (matched_ent) in hash_insert_if_absent()
1054 *matched_ent = data; in hash_insert_if_absent()
1122 hash_insert0 (Hash_table *table, void const *entry, void const **matched_ent) in hash_insert0() argument
1124 return hash_insert_if_absent (table, entry, matched_ent); in hash_insert0()
1136 void const *matched_ent; in hash_insert() local
1137 int err = hash_insert_if_absent (table, entry, &matched_ent); in hash_insert()
1140 : (void *) (err == 0 ? matched_ent : entry)); in hash_insert()