Lines Matching refs:slot
175 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
177 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
178 if (slot->hval != 0) in CONCAT()
182 slot->hval = hval; in CONCAT()
184 slot->entry = data; in CONCAT()
186 slot->entry = *data; in CONCAT()
199 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
201 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
202 if (slot->hval != 0) in CONCAT()
206 slot->hval = hval; in CONCAT()
208 slot->entry = data; in CONCAT()
210 slot->entry = *data; in CONCAT()
226 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
228 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data); in CONCAT()
229 slot->hval = hval; in CONCAT()
231 slot->entry = data; in CONCAT()
233 slot->entry = *data; in CONCAT()
246 struct CONCAT(PREFIX,fshashent) *slot; in CONCAT()
248 slot = CONCAT(PREFIX,fshash_lookup) ((struct CONCAT(PREFIX,fshash) *) htab, in CONCAT()
250 if (slot->hval == 0) in CONCAT()
254 return ENTRYP(*slot); in CONCAT()