Lines Matching refs:CONCAT
38 #define CONCAT(t1,t2) __CONCAT (t1,t2) macro
75 struct CONCAT(PREFIX,fshash) in CONCAT() function
78 struct CONCAT(PREFIX,fshashent) in CONCAT()
93 CLASS struct CONCAT(PREFIX,fshash) * in CONCAT() function
94 CONCAT(PREFIX,fshash_init) (size_t nelems) in CONCAT()
96 struct CONCAT(PREFIX,fshash) *result; in CONCAT()
111 result = (struct CONCAT(PREFIX,fshash) *) in CONCAT()
112 xcalloc (sizeof (struct CONCAT(PREFIX,fshash)) in CONCAT()
113 + (nelems + 1) * sizeof (struct CONCAT(PREFIX,fshashent)), 1); in CONCAT()
125 CONCAT(PREFIX,fshash_fini) (struct CONCAT(PREFIX,fshash) *htab) in CONCAT() function
132 static struct CONCAT(PREFIX,fshashent) * in CONCAT() function
133 CONCAT(PREFIX,fshash_lookup) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT()
170 CONCAT(PREFIX,fshash_insert) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
175 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
177 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
196 CONCAT(PREFIX,fshash_insert_hash) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
199 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
201 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
220 CONCAT(PREFIX,fshash_overwrite) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
226 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
228 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
241 CONCAT(PREFIX,fshash_find) (const struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
246 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
248 slot = CONCAT(PREFIX,fshash_lookup) ((struct CONCAT(PREFIX,fshash) *) htab, in CONCAT()