• Home
  • Raw
  • Download

Lines Matching refs:CONCAT

37 #define CONCAT(t1,t2) CONCAT_EXPANDED(t1,t2)  macro
74 struct CONCAT(PREFIX,fshash) in CONCAT() function
77 struct CONCAT(PREFIX,fshashent) in CONCAT()
92 CLASS struct CONCAT(PREFIX,fshash) * in CONCAT() function
93 CONCAT(PREFIX,fshash_init) (size_t nelems) in CONCAT()
95 struct CONCAT(PREFIX,fshash) *result; in CONCAT()
110 result = (struct CONCAT(PREFIX,fshash) *) in CONCAT()
111 xcalloc (sizeof (struct CONCAT(PREFIX,fshash)) in CONCAT()
112 + (nelems + 1) * sizeof (struct CONCAT(PREFIX,fshashent)), 1); in CONCAT()
124 CONCAT(PREFIX,fshash_fini) (struct CONCAT(PREFIX,fshash) *htab) in CONCAT() function
131 static struct CONCAT(PREFIX,fshashent) * in CONCAT() function
132 CONCAT(PREFIX,fshash_lookup) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT()
169 CONCAT(PREFIX,fshash_insert) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
174 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
176 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
195 CONCAT(PREFIX,fshash_insert_hash) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
198 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
200 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
219 CONCAT(PREFIX,fshash_overwrite) (struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
225 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
227 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
240 CONCAT(PREFIX,fshash_find) (const struct CONCAT(PREFIX,fshash) *htab, in CONCAT() function
245 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
247 slot = CONCAT(PREFIX,fshash_lookup) ((struct CONCAT(PREFIX,fshash) *) htab, in CONCAT()