Home
last modified time | relevance | path

Searched refs:found (Results 1 – 15 of 15) sorted by relevance

/lib/
Dstackdepot.c205 struct stack_record *found; in find_stack() local
207 for (found = bucket; found; found = found->next) { in find_stack()
208 if (found->hash == hash && in find_stack()
209 found->size == size && in find_stack()
210 !stackdepot_memcmp(entries, found->entries, size)) in find_stack()
211 return found; in find_stack()
276 struct stack_record *found = NULL, **bucket; in __stack_depot_save() local
304 found = find_stack(smp_load_acquire(bucket), entries, in __stack_depot_save()
306 if (found) in __stack_depot_save()
333 found = find_stack(*bucket, entries, nr_entries, hash); in __stack_depot_save()
[all …]
Dtest_linear_ranges.c148 bool found; in range_test_get_selector_high() local
152 &sel, &found); in range_test_get_selector_high()
155 KUNIT_EXPECT_TRUE(test, found); in range_test_get_selector_high()
159 &sel, &found); in range_test_get_selector_high()
163 &sel, &found); in range_test_get_selector_high()
165 KUNIT_EXPECT_FALSE(test, found); in range_test_get_selector_high()
181 bool found; in range_test_get_selector_low() local
186 &found); in range_test_get_selector_low()
189 KUNIT_EXPECT_TRUE(test, found); in range_test_get_selector_low()
194 &found); in range_test_get_selector_low()
[all …]
Dlinear_ranges.c140 bool *found) in linear_range_get_selector_low() argument
142 *found = false; in linear_range_get_selector_low()
152 *found = true; in linear_range_get_selector_low()
184 unsigned int *selector, bool *found) in linear_range_get_selector_low_array() argument
193 found); in linear_range_get_selector_low_array()
197 if (*found) in linear_range_get_selector_low_array()
221 bool *found) in linear_range_get_selector_high() argument
223 *found = false; in linear_range_get_selector_high()
233 *found = true; in linear_range_get_selector_high()
Dis_single_threaded.c38 goto found; in current_is_single_threaded()
50 found: in current_is_single_threaded()
Dfault-inject.c72 bool found = (attr->require_start == 0 && attr->require_end == ULONG_MAX); in fail_stacktrace() local
75 return found; in fail_stacktrace()
84 found = true; in fail_stacktrace()
86 return found; in fail_stacktrace()
Dasn1_encoder.c29 bool found = false; in asn1_encode_integer() local
55 if (!found && byte == 0) in asn1_encode_integer()
64 if (!found && (byte & 0x80)) { in asn1_encode_integer()
73 found = true; in asn1_encode_integer()
Dlogic_iomem.c89 struct logic_iomem_region *rreg, *found = NULL; in ioremap() local
98 found = rreg; in ioremap()
102 if (!found) in ioremap()
111 offs = rreg->ops->map(offset - found->res->start, in ioremap()
Dtest_rhashtable.c316 bool found; in test_rhltable() local
335 found = false; in test_rhltable()
339 found = true; in test_rhltable()
346 if (WARN(!found, "element %d not found", i)) in test_rhltable()
Dgenalloc.c556 bool found = false; in gen_pool_has_addr() local
564 found = true; in gen_pool_has_addr()
570 return found; in gen_pool_has_addr()
Dvsprintf.c1649 bool found = true; in escaped_string() local
1684 found = false; in escaped_string()
1687 } while (found); in escaped_string()
1889 bool found = true; in rtc_str() local
1915 found = false; in rtc_str()
1918 } while (found); in rtc_str()
2558 bool found = true; in format_decode() local
2568 default: found = false; in format_decode()
2571 if (!found) in format_decode()
Dbootconfig.c291 goto found; in xbc_node_find_next_leaf()
308 found: in xbc_node_find_next_leaf()
Drhashtable.c747 goto found; in rhashtable_walk_start_check()
766 goto found; in rhashtable_walk_start_check()
772 found: in rhashtable_walk_start_check()
Dxarray.c1946 goto found; in xa_get_mark()
1951 found: in xa_get_mark()
DKconfig.debug347 it when a mismatch is found.
803 If the stack end location is found to be over written always panic as
1751 all OHCI1394 controllers which are found in the PCI config space.
2065 Documentation on how to use the module can be found in
/lib/kunit/
Dkunit-test.c330 struct kunit_resource res1, res2, *found = NULL; in kunit_resource_test_named() local
349 found = kunit_find_named_resource(test, "resource_1"); in kunit_resource_test_named()
351 KUNIT_EXPECT_PTR_EQ(test, found, &res1); in kunit_resource_test_named()
353 if (found) in kunit_resource_test_named()