Home
last modified time | relevance | path

Searched refs:test_flags (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/u-boot/post/
H A Dpost.c165 static void post_get_env_flags(int *test_flags) in post_get_env_flags() argument
183 test_flags[j] &= ~flag[i]; in post_get_env_flags()
202 test_flags[j] |= flag[i]; in post_get_env_flags()
216 static void post_get_flags(int *test_flags) in post_get_flags() argument
221 test_flags[j] = post_list[j].flags; in post_get_flags()
224 post_get_env_flags(test_flags); in post_get_flags()
228 if (test_flags[j] & POST_POWERON) in post_get_flags()
229 test_flags[j] |= POST_SLOWTEST; in post_get_flags()
237 int test_flags, int flags, unsigned int i) in post_run_single() argument
239 if ((flags & test_flags & POST_ALWAYS) && in post_run_single()
[all …]
/OK3568_Linux_fs/kernel/samples/bpf/
H A Dtest_overhead_user.c131 int test_flags = ~0; in main() local
136 test_flags = atoi(argv[1]) ? : test_flags; in main()
140 if (test_flags & 0x3) { in main()
142 run_perf_test(num_cpu, test_flags); in main()
145 if (test_flags & 0xC) { in main()
153 run_perf_test(num_cpu, test_flags >> 2); in main()
157 if (test_flags & 0x30) { in main()
165 run_perf_test(num_cpu, test_flags >> 4); in main()
169 if (test_flags & 0xC0) { in main()
177 run_perf_test(num_cpu, test_flags >> 6); in main()
H A Dmap_perf_test_user.c72 static int test_flags = ~0; variable
80 return test_flags & TEST_BIT(t); in check_test_flags()
439 test_flags = atoi(argv[1]) ? : test_flags; in main()