Lines Matching refs:PREFIX
90 #ifndef PREFIX
91 # define PREFIX macro
96 struct CONCAT(PREFIX,fshash) in CONCAT() argument
99 struct CONCAT(PREFIX,fshashent) in CONCAT()
114 CLASS struct CONCAT(PREFIX,fshash) * in CONCAT() argument
115 CONCAT(PREFIX,fshash_init) (size_t nelems) in CONCAT()
117 struct CONCAT(PREFIX,fshash) *result; in CONCAT()
132 result = (struct CONCAT(PREFIX,fshash) *) in CONCAT()
133 xcalloc (sizeof (struct CONCAT(PREFIX,fshash)) in CONCAT()
134 + (nelems + 1) * sizeof (struct CONCAT(PREFIX,fshashent)), 1); in CONCAT()
146 CONCAT(PREFIX,fshash_fini) (struct CONCAT(PREFIX,fshash) *htab) in CONCAT() argument
153 static struct CONCAT(PREFIX,fshashent) * in CONCAT() argument
154 CONCAT(PREFIX,fshash_lookup) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT()
191 CONCAT(PREFIX,fshash_insert) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() argument
196 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
198 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
217 CONCAT(PREFIX,fshash_insert_hash) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() argument
220 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
222 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
241 CONCAT(PREFIX,fshash_overwrite) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() argument
247 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
249 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
262 CONCAT(PREFIX,fshash_find) (const struct CONCAT(PREFIX,fshash) *htab, in CONCAT() argument
267 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
269 slot = CONCAT(PREFIX,fshash_lookup) ((struct CONCAT(PREFIX,fshash) *) htab, in CONCAT()
285 #undef PREFIX