/tools/include/asm/ |
D | bug.h | 10 #define WARN(condition, format...) ({ \ argument 11 int __ret_warn_on = !!(condition); \ 17 #define WARN_ON(condition) ({ \ argument 18 int __ret_warn_on = !!(condition); \ 25 #define WARN_ON_ONCE(condition) ({ \ argument 27 int __ret_warn_once = !!(condition); \ 36 #define WARN_ONCE(condition, format...) ({ \ argument 38 int __ret_warn_once = !!(condition); \
|
/tools/testing/selftests/filesystems/fuse/ |
D | test_framework.h | 49 #define TESTCOND(condition) \ argument 51 if (!(condition)) { \ 60 #define TESTCONDERR(condition) \ argument 62 if (!(condition)) { \ 73 #define TEST(statement, condition) \ argument 76 TESTCOND(condition); \ 79 #define TESTERR(statement, condition) \ argument 82 TESTCONDERR(condition); \
|
/tools/include/linux/ |
D | compiler.h | 12 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument 15 if (!(condition)) \ 19 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument 22 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 23 __compiletime_assert(condition, msg, prefix, suffix) 34 #define compiletime_assert(condition, msg) \ argument 35 _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__)
|
D | build_bug.h | 49 #define BUILD_BUG_ON(condition) \ argument 50 BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
|
/tools/testing/selftests/bpf/ |
D | test_maps.h | 8 #define CHECK(condition, tag, format...) ({ \ argument 9 int __ret = !!(condition); \
|
D | test_progs.h | 102 #define _CHECK(condition, tag, duration, format...) ({ \ argument 103 int __ret = !!(condition); \ 117 #define CHECK_FAIL(condition) ({ \ argument 118 int __ret = !!(condition); \ 128 #define CHECK(condition, tag, format...) \ argument 129 _CHECK(condition, tag, duration, format) 130 #define CHECK_ATTR(condition, tag, format...) \ argument 131 _CHECK(condition, tag, tattr.duration, format)
|
D | get_cgroup_id_user.c | 24 #define CHECK(condition, tag, format...) ({ \ argument 25 int __ret = !!(condition); \
|
/tools/testing/scatterlist/linux/ |
D | mm.h | 17 #define WARN_ON(condition) ({ \ argument 18 int __ret_warn_on = !!(condition); \ 22 #define WARN_ON_ONCE(condition) ({ \ argument 23 int __ret_warn_on = !!(condition); \
|
/tools/testing/selftests/net/mptcp/ |
D | diag.sh | 45 local condition="$1" 51 nr=$(ss -inmHMN $ns | $condition) 70 local condition="grep -c token:" 81 nr=$(ss -inmHMN $ns | $condition)
|
/tools/testing/selftests/ |
D | kselftest.h | 179 #define ksft_test_result(condition, fmt, ...) do { \ argument 180 if (!!(condition)) \ 246 #define ksft_exit(condition) do { \ argument 247 if (!!(condition)) \
|
/tools/testing/selftests/vm/ |
D | map_populate.c | 24 #define BUG_ON(condition, description) \ argument 26 if (condition) { \
|
D | pkey-helpers.h | 71 #define pkey_assert(condition) do { \ argument 72 if (!(condition)) { \
|
D | mremap_dontunmap.c | 33 #define BUG_ON(condition, description) \ argument 35 if (condition) { \
|
/tools/testing/selftests/bpf/prog_tests/ |
D | select_reuseport.c | 53 #define RET_IF(condition, tag, format...) ({ \ argument 54 if (CHECK_FAIL(condition)) { \ 60 #define RET_ERR(condition, tag, format...) ({ \ argument 61 if (CHECK_FAIL(condition)) { \
|
D | btf.c | 37 #define CHECK(condition, format...) _CHECK(condition, "check", duration, format) argument
|
/tools/memory-model/Documentation/ |
D | control-dependencies.txt | 170 Because the first condition cannot fault and the second condition is 196 the writes to "b" with the condition. Unfortunately for this line
|
D | ordering.txt | 416 through an "if" condition to a marked store (WRITE_ONCE() or stronger) 422 an READ_ONCE() and a WRITE_ONCE() when there is an "if" condition
|
D | litmus-tests.txt | 208 clause's condition and run the test.) The numbers ("0 3") at the end 617 the "filter" clause. Line 24 does a known-true "if" condition to avoid 619 on line 32 is updated to a condition that is alway satisfied at the end
|
D | access-marking.txt | 108 in a retry. Unless the race condition that resulted in the bogus value
|
/tools/power/cpupower/bench/ |
D | README-BENCH | 27 cpufreq-bench helps to test the condition of a given cpufreq governor.
|
/tools/testing/selftests/net/ |
D | fib_nexthops.sh | 2007 local condition=$1; shift 2011 (( $count $condition ))
|
D | ipsec.c | 45 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) argument
|
/tools/testing/selftests/filesystems/incfs/ |
D | incfs_test.c | 65 #define TESTCOND(condition) \ argument 67 if (!(condition)) { \ 76 #define TEST(statement, condition) \ argument 79 TESTCOND(condition); \
|
/tools/objtool/Documentation/ |
D | stack-validation.txt | 110 stack traces need to be reliable (or an unreliable condition needs to
|
/tools/perf/Documentation/ |
D | perf-script.txt | 207 cases e.g. "jcc (x)" for a condition branch within a transaction.
|