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