/lib/ |
D | test_linear_ranges.c | 148 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 …]
|
D | stackdepot.c | 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() [all …]
|
D | linear_ranges.c | 140 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()
|
D | is_single_threaded.c | 38 goto found; in current_is_single_threaded() 50 found: in current_is_single_threaded()
|
D | fault-inject.c | 72 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()
|
D | asn1_encoder.c | 29 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()
|
D | logic_iomem.c | 89 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()
|
D | find_bit.c | 82 goto found; \ 89 found: \
|
D | test_rhashtable.c | 316 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()
|
D | genalloc.c | 556 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()
|
D | vsprintf.c | 1621 bool found = true; in escaped_string() local 1656 found = false; in escaped_string() 1659 } while (found); in escaped_string() 1862 bool found = true; in rtc_str() local 1888 found = false; in rtc_str() 1891 } while (found); in rtc_str() 2552 bool found = true; in format_decode() local 2562 default: found = false; in format_decode() 2565 if (!found) in format_decode()
|
D | bootconfig.c | 356 goto found; in xbc_node_find_next_leaf() 373 found: in xbc_node_find_next_leaf()
|
D | rhashtable.c | 747 goto found; in rhashtable_walk_start_check() 766 goto found; in rhashtable_walk_start_check() 772 found: in rhashtable_walk_start_check()
|
D | xarray.c | 1949 goto found; in xa_get_mark() 1954 found: in xa_get_mark()
|
D | maple_tree.c | 4860 bool found = false; in mas_anode_descend() local 4890 found = true; in mas_anode_descend() 4910 found = true; in mas_anode_descend() 4913 return found; in mas_anode_descend()
|
D | Kconfig.debug | 390 it when a mismatch is found. 813 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. 2068 Documentation on how to use the module can be found in
|
/lib/kunit/ |
D | kunit-test.c | 371 struct kunit_resource res1, res2, *found = NULL; in kunit_resource_test_named() local 390 found = kunit_find_named_resource(test, "resource_1"); in kunit_resource_test_named() 392 KUNIT_EXPECT_PTR_EQ(test, found, &res1); in kunit_resource_test_named() 394 if (found) in kunit_resource_test_named()
|