Lines Matching refs:found
301 struct stack_record *found; in find_stack() local
303 for (found = bucket; found; found = found->next) { in find_stack()
304 if (found->hash == hash && in find_stack()
305 found->size == size && in find_stack()
306 !stackdepot_memcmp(entries, found->entries, size)) in find_stack()
307 return found; in find_stack()
424 struct stack_record *found = NULL, **bucket; in __stack_depot_save() local
452 found = find_stack(smp_load_acquire(bucket), entries, in __stack_depot_save()
454 if (found) in __stack_depot_save()
481 found = find_stack(*bucket, entries, nr_entries, hash); in __stack_depot_save()
482 if (!found) { in __stack_depot_save()
492 found = new; in __stack_depot_save()
508 if (found) in __stack_depot_save()
509 retval.handle = found->handle.handle; in __stack_depot_save()