Lines Matching refs:found
177 struct stack_record *found; in find_stack() local
179 for (found = bucket; found; found = found->next) { in find_stack()
180 if (found->hash == hash && in find_stack()
181 found->size == size && in find_stack()
182 !stackdepot_memcmp(entries, found->entries, size)) in find_stack()
183 return found; in find_stack()
223 struct stack_record *found = NULL, **bucket; in stack_depot_save() local
241 found = find_stack(smp_load_acquire(bucket), entries, in stack_depot_save()
243 if (found) in stack_depot_save()
270 found = find_stack(*bucket, entries, nr_entries, hash); in stack_depot_save()
271 if (!found) { in stack_depot_save()
282 found = new; in stack_depot_save()
298 if (found) in stack_depot_save()
299 retval = found->handle.handle; in stack_depot_save()