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