/lib/ |
D | stackinit_kunit.c | 304 #define DEFINE_SCALAR_TEST(name, init, xfail) \ argument 305 DEFINE_TEST(name ## _ ## init, name, SCALAR, \ 306 init, xfail) 308 #define DEFINE_SCALAR_TESTS(init, xfail) \ argument 309 DEFINE_SCALAR_TEST(u8, init, xfail); \ 310 DEFINE_SCALAR_TEST(u16, init, xfail); \ 311 DEFINE_SCALAR_TEST(u32, init, xfail); \ 312 DEFINE_SCALAR_TEST(u64, init, xfail); \ 313 DEFINE_TEST(char_array_ ## init, unsigned char, \ 314 STRING, init, xfail) [all …]
|
D | atomic64_test.c | 72 #define TEST_ARGS(bit, op, init, ret, expect, args...) \ argument 74 atomic##bit##_set(&v, init); \ 79 #define XCHG_FAMILY_TEST(bit, init, new) \ argument 81 FAMILY_TEST(TEST_ARGS, bit, xchg, init, init, new, new); \ 84 #define CMPXCHG_FAMILY_TEST(bit, init, new, wrong) \ argument 87 init, init, new, init, new); \ 89 init, init, init, wrong, new); \
|
D | interval_tree_test.c | 9 #define __param(type, name, init, msg) \ argument 10 static type name = init; \ 41 static void init(void) in init() function 82 init(); in interval_tree_test_init()
|
D | test_static_keys.c | 71 bool ret, init; in verify_keys() local 75 init = keys[i].init_state; in verify_keys() 76 if (ret != (invert ? !init : init)) in verify_keys()
|
D | rbtree_test.c | 9 #define __param(type, name, init, msg) \ argument 10 static type name = init; \ 149 static void init(void) in init() function 255 init(); in rbtree_test_init() 334 init(); in rbtree_test_init() 348 init(); in rbtree_test_init() 381 init(); in rbtree_test_init()
|
D | bootconfig-data.S | 5 .section .init.rodata, "aw"
|
D | textsearch.c | 148 if (ops->name == NULL || ops->find == NULL || ops->init == NULL || in textsearch_register() 289 conf = ops->init(pattern, len, gfp_mask, flags); in textsearch_prepare()
|
D | test_vmalloc.c | 21 #define __param(type, name, init, msg) \ argument 22 static type name = init; \
|
D | slub_kunit.c | 185 .init = test_init,
|
D | ts_kmp.c | 133 .init = kmp_init,
|
D | cpumask_kunit.c | 150 .init = test_cpumask_init,
|
D | ts_bm.c | 202 .init = bm_init,
|
D | test_fprobe.c | 270 .init = fprobe_test_init,
|
D | Kconfig | 19 Benchmark all available RAID6 PQ functions on init and choose the 185 tristate "CRC32 perform self test on init" 300 bool "PRNG perform self test on init" 571 tristate "glob self-test on init"
|
D | test_kprobes.c | 397 .init = kprobes_test_init,
|
D | ts_fsm.c | 317 .init = fsm_init,
|
D | kobject_uevent.c | 819 .init = uevent_net_init,
|
D | Kconfig.debug | 488 __init,, etc. (see the full list in include/linux/init.h), 494 When inlining a function annotated with __init in a non-init
|
/lib/kunit/ |
D | resource.c | 20 kunit_resource_init_t init, in __kunit_add_resource() argument 31 if (init) { in __kunit_add_resource() 32 ret = init(res, data); in __kunit_add_resource()
|
D | kunit-example-test.c | 276 .init = example_test_init,
|
D | kunit-test.c | 103 .init = kunit_try_catch_test_init, 528 .init = kunit_resource_test_init,
|
D | test.c | 415 if (suite->init) { in kunit_run_case_internal() 418 ret = suite->init(test); in kunit_run_case_internal()
|
/lib/reed_solomon/ |
D | test_rslib.c | 27 #define __param(type, name, init, msg) \ argument 28 static type name = init; \
|