Home
last modified time | relevance | path

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

/lib/
Dtest_linear_ranges.c139 bool found; in range_test_get_selector_high() local
143 &sel, &found); in range_test_get_selector_high()
146 KUNIT_EXPECT_TRUE(test, found); in range_test_get_selector_high()
150 &sel, &found); in range_test_get_selector_high()
154 &sel, &found); in range_test_get_selector_high()
156 KUNIT_EXPECT_FALSE(test, found); in range_test_get_selector_high()
172 bool found; in range_test_get_selector_low() local
177 &found); in range_test_get_selector_low()
180 KUNIT_EXPECT_TRUE(test, found); in range_test_get_selector_low()
185 &found); in range_test_get_selector_low()
[all …]
Dstackdepot.c347 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()
[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()
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()
Dfault-inject.c72 bool found = (attr->require_start == 0 && attr->require_end == ULONG_MAX); in fail_stacktrace() local
74 if (depth == 0 || (found && !attr->reject_start && !attr->reject_end)) in fail_stacktrace()
75 return found; in fail_stacktrace()
84 found = true; in fail_stacktrace()
86 return found; in fail_stacktrace()
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()
Dfind_bit.c82 goto found; \
89 found: \
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.c1618 bool found = true; in escaped_string() local
1653 found = false; in escaped_string()
1656 } while (found); in escaped_string()
1859 bool found = true; in rtc_str() local
1885 found = false; in rtc_str()
1888 } while (found); in rtc_str()
2570 bool found = true; in format_decode() local
2580 default: found = false; in format_decode()
2583 if (!found) in format_decode()
Dbootconfig.c359 goto found; in xbc_node_find_next_leaf()
376 found: in xbc_node_find_next_leaf()
Drhashtable.c751 goto found; in rhashtable_walk_start_check()
770 goto found; in rhashtable_walk_start_check()
776 found: in rhashtable_walk_start_check()
Dxarray.c1953 goto found; in xa_get_mark()
1958 found: in xa_get_mark()
Dmaple_tree.c4828 bool found = false; in mas_anode_descend() local
4858 found = true; in mas_anode_descend()
4878 found = true; in mas_anode_descend()
4881 return found; in mas_anode_descend()
DKconfig.debug421 it when a mismatch is found.
776 If the stack end location is found to be over written always panic as
1821 all OHCI1394 controllers which are found in the PCI config space.
2184 Documentation on how to use the module can be found in
/lib/kunit/
Dkunit-test.c372 struct kunit_resource res1, res2, *found = NULL; in kunit_resource_test_named() local
391 found = kunit_find_named_resource(test, "resource_1"); in kunit_resource_test_named()
393 KUNIT_EXPECT_PTR_EQ(test, found, &res1); in kunit_resource_test_named()
395 if (found) in kunit_resource_test_named()