Lines Matching refs:found
206 struct stack_record *found; in find_stack() local
208 for (found = bucket; found; found = found->next) { in find_stack()
209 if (found->hash == hash && in find_stack()
210 found->size == size && in find_stack()
211 !stackdepot_memcmp(entries, found->entries, size)) in find_stack()
212 return found; in find_stack()
263 struct stack_record *found = NULL, **bucket; in stack_depot_save() local
281 found = find_stack(smp_load_acquire(bucket), entries, in stack_depot_save()
283 if (found) in stack_depot_save()
310 found = find_stack(*bucket, entries, nr_entries, hash); in stack_depot_save()
311 if (!found) { in stack_depot_save()
322 found = new; in stack_depot_save()
338 if (found) in stack_depot_save()
339 retval = found->handle.handle; in stack_depot_save()