| /Linux-v5.15/include/linux/ |
| D | wait.h | 248 #define ___wait_cond_timeout(condition) \ argument 250 bool __cond = (condition); \ 274 #define ___wait_event(wq_head, condition, state, exclusive, ret, cmd) \ argument 284 if (condition) \ 298 #define __wait_event(wq_head, condition) \ argument 299 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ 314 #define wait_event(wq_head, condition) \ argument 317 if (condition) \ 319 __wait_event(wq_head, condition); \ 322 #define __io_wait_event(wq_head, condition) \ argument [all …]
|
| D | swait.h | 158 #define ___swait_event(wq, condition, state, ret, cmd) \ argument 168 if (condition) \ 182 #define __swait_event(wq, condition) \ argument 183 (void)___swait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, \ 186 #define swait_event_exclusive(wq, condition) \ argument 188 if (condition) \ 190 __swait_event(wq, condition); \ 193 #define __swait_event_timeout(wq, condition, timeout) \ argument 194 ___swait_event(wq, ___wait_cond_timeout(condition), \ 198 #define swait_event_timeout_exclusive(wq, condition, timeout) \ argument [all …]
|
| D | wait_bit.h | 242 #define ___wait_var_event(var, condition, state, exclusive, ret, cmd) \ argument 255 if (condition) \ 269 #define __wait_var_event(var, condition) \ argument 270 ___wait_var_event(var, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ 273 #define wait_var_event(var, condition) \ argument 276 if (condition) \ 278 __wait_var_event(var, condition); \ 281 #define __wait_var_event_killable(var, condition) \ argument 282 ___wait_var_event(var, condition, TASK_KILLABLE, 0, 0, \ 285 #define wait_var_event_killable(var, condition) \ argument [all …]
|
| D | ratelimit.h | 47 #define WARN_ON_RATELIMIT(condition, state) ({ \ argument 48 bool __rtn_cond = !!(condition); \ 53 #define WARN_RATELIMIT(condition, format, ...) \ argument 58 int rtn = !!(condition); \ 68 #define WARN_ON_RATELIMIT(condition, state) \ argument 69 WARN_ON(condition) 71 #define WARN_RATELIMIT(condition, format, ...) \ argument 73 int rtn = WARN(condition, format, ##__VA_ARGS__); \
|
| D | compiler_types.h | 299 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument 302 if (!(condition)) \ 306 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument 309 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 310 __compiletime_assert(condition, msg, prefix, suffix) 321 #define compiletime_assert(condition, msg) \ argument 322 _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__)
|
| /Linux-v5.15/include/asm-generic/ |
| D | bug.h | 65 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0) argument 103 #define WARN_ON_ONCE(condition) ({ \ argument 104 int __ret_warn_on = !!(condition); \ 120 #define WARN_ON(condition) ({ \ argument 121 int __ret_warn_on = !!(condition); \ 129 #define WARN(condition, format...) ({ \ argument 130 int __ret_warn_on = !!(condition); \ 137 #define WARN_TAINT(condition, taint, format...) ({ \ argument 138 int __ret_warn_on = !!(condition); \ 145 #define WARN_ON_ONCE(condition) \ argument [all …]
|
| /Linux-v5.15/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); \
|
| /Linux-v5.15/net/ax25/ |
| D | ax25_std_in.c | 160 ax25->condition = 0x00; in ax25_std_state3_machine() 179 ax25->condition &= ~AX25_COND_PEER_RX_BUSY; in ax25_std_state3_machine() 181 ax25->condition |= AX25_COND_PEER_RX_BUSY; in ax25_std_state3_machine() 193 ax25->condition &= ~AX25_COND_PEER_RX_BUSY; in ax25_std_state3_machine() 214 if (ax25->condition & AX25_COND_PEER_RX_BUSY) { in ax25_std_state3_machine() 219 if (ax25->condition & AX25_COND_OWN_RX_BUSY) { in ax25_std_state3_machine() 226 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_std_state3_machine() 228 ax25->condition &= ~AX25_COND_REJECT; in ax25_std_state3_machine() 232 if (!(ax25->condition & AX25_COND_ACK_PENDING)) { in ax25_std_state3_machine() 233 ax25->condition |= AX25_COND_ACK_PENDING; in ax25_std_state3_machine() [all …]
|
| D | ax25_std_subr.c | 37 ax25->condition = 0x00; in ax25_std_establish_data_link() 54 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_std_transmit_enquiry() 59 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_std_transmit_enquiry() 67 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_std_enquiry_response() 72 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_std_enquiry_response() 77 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_std_timeout_response() 82 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_std_timeout_response()
|
| D | ax25_ds_in.c | 163 ax25->condition = 0x00; in ax25_ds_state3_machine() 185 ax25->condition &= ~AX25_COND_PEER_RX_BUSY; in ax25_ds_state3_machine() 187 ax25->condition |= AX25_COND_PEER_RX_BUSY; in ax25_ds_state3_machine() 201 ax25->condition &= ~AX25_COND_PEER_RX_BUSY; in ax25_ds_state3_machine() 227 if (ax25->condition & AX25_COND_PEER_RX_BUSY) { in ax25_ds_state3_machine() 234 if (ax25->condition & AX25_COND_OWN_RX_BUSY) { in ax25_ds_state3_machine() 241 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_ds_state3_machine() 243 ax25->condition &= ~AX25_COND_REJECT; in ax25_ds_state3_machine() 247 if (!(ax25->condition & AX25_COND_ACK_PENDING)) { in ax25_ds_state3_machine() 248 ax25->condition |= AX25_COND_ACK_PENDING; in ax25_ds_state3_machine() [all …]
|
| D | ax25_ds_subr.c | 65 if (!(ax25->condition & AX25_COND_PEER_RX_BUSY)) { in ax25_ds_enquiry_response() 91 if (!(ax25o->condition & AX25_COND_PEER_RX_BUSY) && ax25o->state == AX25_STATE_3) { in ax25_ds_enquiry_response() 109 ax25->condition &= AX25_COND_DAMA_MODE; in ax25_ds_establish_data_link() 161 …if (ax25->ax25_dev == ax25_dev && (ax25->condition & AX25_COND_DAMA_MODE) && ax25->state > AX25_ST… in ax25_check_dama_slave() 197 ax25->condition |= AX25_COND_DAMA_MODE; in ax25_dama_on() 202 ax25->condition &= ~AX25_COND_DAMA_MODE; in ax25_dama_off()
|
| /Linux-v5.15/net/rose/ |
| D | rose_in.c | 44 rose->condition = 0x00; in rose_state1_machine() 111 rose->condition = 0x00; in rose_state3_machine() 129 rose->condition = 0x00; in rose_state3_machine() 140 rose->condition |= ROSE_COND_PEER_RX_BUSY; in rose_state3_machine() 142 rose->condition &= ~ROSE_COND_PEER_RX_BUSY; in rose_state3_machine() 148 rose->condition &= ~ROSE_COND_PEER_RX_BUSY; in rose_state3_machine() 151 rose->condition = 0x00; in rose_state3_machine() 171 rose->condition = 0x00; in rose_state3_machine() 183 rose->condition |= ROSE_COND_OWN_RX_BUSY; in rose_state3_machine() 190 rose->condition &= ~ROSE_COND_ACK_PENDING; in rose_state3_machine() [all …]
|
| /Linux-v5.15/drivers/input/joystick/iforce/ |
| D | iforce-ff.c | 195 ret |= old->u.condition[i].right_saturation != new->u.condition[i].right_saturation in need_condition_modifier() 196 || old->u.condition[i].left_saturation != new->u.condition[i].left_saturation in need_condition_modifier() 197 || old->u.condition[i].right_coeff != new->u.condition[i].right_coeff in need_condition_modifier() 198 || old->u.condition[i].left_coeff != new->u.condition[i].left_coeff in need_condition_modifier() 199 || old->u.condition[i].deadband != new->u.condition[i].deadband in need_condition_modifier() 200 || old->u.condition[i].center != new->u.condition[i].center; in need_condition_modifier() 484 effect->u.condition[0].right_saturation, in iforce_upload_condition() 485 effect->u.condition[0].left_saturation, in iforce_upload_condition() 486 effect->u.condition[0].right_coeff, in iforce_upload_condition() 487 effect->u.condition[0].left_coeff, in iforce_upload_condition() [all …]
|
| /Linux-v5.15/arch/powerpc/include/asm/ |
| D | delay.h | 53 #define spin_event_timeout(condition, timeout, delay) \ argument 55 typeof(condition) __ret; \ 60 while (!(__ret = (condition)) && \ 65 while (!(__ret = (condition)) && \ 71 __ret = (condition); \
|
| /Linux-v5.15/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/ |
| D | timed_ctrl.c | 27 hrt_data condition, in timed_ctrl_snd_commnd() argument 36 timed_ctrl_reg_store(ID, _HRT_TIMED_CONTROLLER_CMD_REG_IDX, condition); in timed_ctrl_snd_commnd() 48 hrt_data condition, in timed_ctrl_snd_sp_commnd() argument 57 timed_ctrl_snd_commnd(ID, mask, condition, counter, in timed_ctrl_snd_sp_commnd() 64 hrt_data condition, in timed_ctrl_snd_gpio_commnd() argument 73 timed_ctrl_snd_commnd(ID, mask, condition, counter, in timed_ctrl_snd_gpio_commnd()
|
| /Linux-v5.15/net/netrom/ |
| D | nr_in.c | 177 nrom->condition |= NR_COND_PEER_RX_BUSY; in nr_state3_machine() 180 nrom->condition &= ~NR_COND_PEER_RX_BUSY; in nr_state3_machine() 190 if (nrom->condition & NR_COND_PEER_RX_BUSY) { in nr_state3_machine() 207 nrom->condition |= NR_COND_PEER_RX_BUSY; in nr_state3_machine() 210 nrom->condition &= ~NR_COND_PEER_RX_BUSY; in nr_state3_machine() 218 if (nrom->condition & NR_COND_PEER_RX_BUSY) { in nr_state3_machine() 227 if (nrom->condition & NR_COND_OWN_RX_BUSY) in nr_state3_machine() 238 nrom->condition |= NR_COND_OWN_RX_BUSY; in nr_state3_machine() 257 if (!(nrom->condition & NR_COND_ACK_PENDING)) { in nr_state3_machine() 258 nrom->condition |= NR_COND_ACK_PENDING; in nr_state3_machine()
|
| D | nr_out.c | 89 if (nr->condition & NR_COND_OWN_RX_BUSY) in nr_send_iframe() 111 if (nr->condition & NR_COND_OWN_RX_BUSY) in nr_send_nak_frame() 116 nr->condition &= ~NR_COND_ACK_PENDING; in nr_send_nak_frame() 131 if (nr->condition & NR_COND_PEER_RX_BUSY) in nr_kick() 179 nr->condition &= ~NR_COND_ACK_PENDING; in nr_kick() 224 nr->condition = 0x00; in nr_establish_data_link() 243 if (nr->condition & NR_COND_OWN_RX_BUSY) { in nr_enquiry_response() 253 nr->condition &= ~NR_COND_ACK_PENDING; in nr_enquiry_response()
|
| /Linux-v5.15/arch/mips/include/asm/ |
| D | bug.h | 22 static inline void __BUG_ON(unsigned long condition) in __BUG_ON() argument 24 if (__builtin_constant_p(condition)) { in __BUG_ON() 25 if (condition) in __BUG_ON() 31 : : "r" (condition), "i" (BRK_BUG)); in __BUG_ON()
|
| /Linux-v5.15/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__)
|
| /Linux-v5.15/drivers/staging/r8188eu/hal/ |
| D | HalHWImg8188E_MAC.c | 7 static bool Checkcondition(const u32 condition, const u32 hex) in Checkcondition() argument 12 u32 cond = condition; in Checkcondition() 14 if (condition == 0xCDCDCDCD) in Checkcondition() 17 cond = condition & 0x000000FF; in Checkcondition() 21 cond = condition & 0x0000FF00; in Checkcondition() 26 cond = condition & 0x00FF0000; in Checkcondition()
|
| /Linux-v5.15/net/x25/ |
| D | x25_in.c | 97 x25->condition = 0x00; in x25_state1_machine() 221 x25->condition = 0x00; in x25_state3_machine() 243 x25->condition = 0x00; in x25_state3_machine() 252 x25->condition |= X25_COND_PEER_RX_BUSY; in x25_state3_machine() 254 x25->condition &= ~X25_COND_PEER_RX_BUSY; in x25_state3_machine() 260 x25->condition &= ~X25_COND_PEER_RX_BUSY; in x25_state3_machine() 265 x25->condition = 0x00; in x25_state3_machine() 283 x25->condition = 0x00; in x25_state3_machine() 293 x25->condition |= X25_COND_OWN_RX_BUSY; in x25_state3_machine() 300 x25->condition &= ~X25_COND_ACK_PENDING; in x25_state3_machine() [all …]
|
| /Linux-v5.15/include/kunit/ |
| D | test.h | 806 condition, \ argument 811 !!(condition) == !!expected_true, \ 815 #condition, \ 820 #define KUNIT_TRUE_MSG_ASSERTION(test, assert_type, condition, fmt, ...) \ argument 823 condition, \ 828 #define KUNIT_TRUE_ASSERTION(test, assert_type, condition) \ argument 829 KUNIT_TRUE_MSG_ASSERTION(test, assert_type, condition, NULL) 831 #define KUNIT_FALSE_MSG_ASSERTION(test, assert_type, condition, fmt, ...) \ argument 834 condition, \ 839 #define KUNIT_FALSE_ASSERTION(test, assert_type, condition) \ argument [all …]
|
| /Linux-v5.15/net/lapb/ |
| D | lapb_in.c | 59 lapb->condition = 0x00; in lapb_state0_machine() 79 lapb->condition = 0x00; in lapb_state0_machine() 157 lapb->condition = 0x00; in lapb_state1_machine() 268 lapb->condition = 0x00; in lapb_state3_machine() 286 lapb->condition = 0x00; in lapb_state3_machine() 324 lapb->condition |= LAPB_PEER_RX_BUSY_CONDITION; in lapb_state3_machine() 343 lapb->condition &= ~LAPB_PEER_RX_BUSY_CONDITION; in lapb_state3_machine() 362 lapb->condition &= ~LAPB_PEER_RX_BUSY_CONDITION; in lapb_state3_machine() 395 if (lapb->condition & LAPB_PEER_RX_BUSY_CONDITION) in lapb_state3_machine() 416 lapb->condition &= ~LAPB_REJECT_CONDITION; in lapb_state3_machine() [all …]
|
| /Linux-v5.15/scripts/coccinelle/misc/ |
| D | bugon.cocci | 2 /// Use BUG_ON instead of a if condition followed by BUG. 5 //# condition on an expression and replaces the if condition and BUG() 61 msg="WARNING: Use BUG_ON instead of if condition followed by BUG.\nPlease make sure the condition h…
|
| /Linux-v5.15/tools/testing/selftests/bpf/ |
| 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)
|