• Home
  • Raw
  • Download

Lines Matching refs:CONCAT

38 #define CONCAT(t1,t2) __CONCAT (t1,t2)  macro
42 #define CONCAT(t1,t2) CONCAT_EXPANDED(t1,t2) macro
80 struct CONCAT(PREFIX,fshash) in CONCAT() function
83 struct CONCAT(PREFIX,fshashent) in CONCAT()
98 CLASS struct CONCAT(PREFIX,fshash) * in CONCAT() function
99 CONCAT(PREFIX,fshash_init) (size_t nelems) in CONCAT()
101 struct CONCAT(PREFIX,fshash) *result; in CONCAT()
116 result = (struct CONCAT(PREFIX,fshash) *) in CONCAT()
117 xcalloc (sizeof (struct CONCAT(PREFIX,fshash)) in CONCAT()
118 + (nelems + 1) * sizeof (struct CONCAT(PREFIX,fshashent)), 1); in CONCAT()
130 CONCAT(PREFIX,fshash_fini) (struct CONCAT(PREFIX,fshash) *htab) in CONCAT() function
137 static struct CONCAT(PREFIX,fshashent) * in CONCAT() function
138 CONCAT(PREFIX,fshash_lookup) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT()
175 CONCAT(PREFIX,fshash_insert) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
180 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
182 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
201 CONCAT(PREFIX,fshash_insert_hash) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
204 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
206 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
225 CONCAT(PREFIX,fshash_overwrite) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
231 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
233 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
246 CONCAT(PREFIX,fshash_find) (const struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
251 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
253 slot = CONCAT(PREFIX,fshash_lookup) ((struct CONCAT(PREFIX,fshash) *) htab, in CONCAT()