Lines Matching refs:found
347 struct stack_record *found; in find_stack() local
349 for (found = bucket; found; found = found->next) { in find_stack()
350 if (found->hash == hash && in find_stack()
351 found->size == size && in find_stack()
352 !stackdepot_memcmp(entries, found->entries, size)) in find_stack()
353 return found; in find_stack()
362 struct stack_record *found = NULL, **bucket; in __stack_depot_save() local
390 found = find_stack(smp_load_acquire(bucket), entries, nr_entries, hash); in __stack_depot_save()
391 if (found) in __stack_depot_save()
417 found = find_stack(*bucket, entries, nr_entries, hash); in __stack_depot_save()
418 if (!found) { in __stack_depot_save()
429 found = new; in __stack_depot_save()
445 if (found) in __stack_depot_save()
446 retval.handle = found->handle.handle; in __stack_depot_save()