Lines Matching refs:found
182 struct stack_record *found;
184 for (found = bucket; found; found = found->next) {
185 if (found->hash == hash &&
186 found->size == size &&
187 !stackdepot_memcmp(entries, found->entries, size))
188 return found;
239 struct stack_record *found = NULL, **bucket;
257 found = find_stack(smp_load_acquire(bucket), entries,
259 if (found)
286 found = find_stack(*bucket, entries, nr_entries, hash);
287 if (!found) {
298 found = new;
314 if (found)
315 retval = found->handle.handle;