Searched defs:cond (Results 1 – 6 of 6) sorted by relevance
/spdk/include/spdk/ |
H A D | likely.h | 19 #define spdk_unlikely(cond) __builtin_expect((cond), 0) argument 20 #define spdk_likely(cond) __builtin_expect(!!(cond), 1) argument
|
H A D | assert.h | 20 #define SPDK_STATIC_ASSERT(cond, msg) static_assert(cond, msg) argument
|
/spdk/lib/ftl/utils/ |
H A D | ftl_defs.h | 33 #define ftl_bug(cond) \ argument
|
/spdk/scripts/ |
H A D | calc-iobuf.py | 62 def foreach(cond=lambda _: True): argument
|
/spdk/test/thread/lock/ |
H A D | spdk_lock.c | 34 #define ASSERT(cond) do { \ argument
|
/spdk/lib/thread/ |
H A D | thread.c | 225 SPIN_ASSERT_IMPL(cond,err,extra_log,ret) global() argument 235 SPIN_ASSERT_LOG_STACKS(cond,err,lock) global() argument 237 SPIN_ASSERT_RETURN(cond,err,ret) global() argument 238 SPIN_ASSERT(cond,err) global() argument
|