| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | wait.h | 265 #define ___wait_cond_timeout(condition) \ argument 267 bool __cond = (condition); \ 291 #define ___wait_event(wq_head, condition, state, exclusive, ret, cmd) \ argument 301 if (condition) \ 315 #define __wait_event(wq_head, condition) \ argument 316 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ 331 #define wait_event(wq_head, condition) \ argument 334 if (condition) \ 336 __wait_event(wq_head, condition); \ 339 #define __io_wait_event(wq_head, condition) \ argument [all …]
|
| H A 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 …]
|
| H A 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 …]
|
| H A 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__); \
|
| /OK3568_Linux_fs/kernel/include/asm-generic/ |
| H A D | bug.h | 63 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0) argument 101 #define WARN_ON_ONCE(condition) ({ \ argument 102 int __ret_warn_on = !!(condition); \ 118 #define WARN_ON(condition) ({ \ argument 119 int __ret_warn_on = !!(condition); \ 127 #define WARN(condition, format...) ({ \ argument 128 int __ret_warn_on = !!(condition); \ 135 #define WARN_TAINT(condition, taint, format...) ({ \ argument 136 int __ret_warn_on = !!(condition); \ 143 #define WARN_ON_ONCE(condition) ({ \ argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/common/ |
| H A D | mali_kernel_common.h | 70 #define MALI_CHECK(condition, error_code) do { if(!(condition)) MALI_ERROR(error_code); } while(0) argument 102 #define MALI_CHECK_GOTO(condition, label) do { if(!(condition)) goto label; } while(0) argument 141 #define MALI_DEBUG_PRINT_IF(level,condition,args) \ argument 142 if((condition)&&((level) <= mali_debug_level))\ 154 #define MALI_DEBUG_PRINT_ASSERT(condition, args) do {if( !(condition)) { MALI_PRINT_ERROR(args); _… argument 156 #define MALI_DEBUG_ASSERT(condition) do {if( !(condition)) {MALI_PRINT_ERROR(("ASSERT failed: " #c… argument 163 #define MALI_DEBUG_PRINT_IF(level,condition,args) do {} while(0) argument 164 #define MALI_DEBUG_PRINT_ELSE(level,condition,args) do {} while(0) argument 165 #define MALI_DEBUG_PRINT_ASSERT(condition,args) do {} while(0) argument 167 #define MALI_DEBUG_ASSERT(condition) do {} while(0) argument
|
| /OK3568_Linux_fs/u-boot/include/linux/ |
| H A D | bug.h | 14 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0) argument 16 #define WARN_ON(condition) ({ \ argument 17 int __ret_warn_on = !!(condition); \ 23 #define WARN(condition, format...) ({ \ argument 24 int __ret_warn_on = !!(condition); \ 30 #define WARN_ON_ONCE(condition) ({ \ argument 32 int __ret_warn_once = !!(condition); \ 41 #define WARN_ONCE(condition, format...) ({ \ argument 43 int __ret_warn_once = !!(condition); \
|
| H A D | build_bug.h | 13 #define BUILD_BUG_ON(condition) (0) argument 67 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) argument 69 #define BUILD_BUG_ON(condition) \ argument 70 BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
|
| /OK3568_Linux_fs/kernel/net/ax25/ |
| H A 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 …]
|
| H A 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 …]
|
| H A 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()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/opencl/ |
| H A D | ocl_defs.hpp | 29 #define CV_OCL_RUN_(condition, func, ...) \ argument 31 if (cv::ocl::isOpenCLActivated() && (condition) && func) \ 45 #define CV_OCL_RUN_(condition, func, ...) \ argument 47 if (cv::ocl::isOpenCLActivated() && (condition)) \ 61 #define CV_OCL_RUN_(condition, func, ...) \ argument 62 if (cv::ocl::isOpenCLActivated() && (condition) && func) \ 70 #define CV_OCL_RUN_(condition, func, ...) argument 73 #define CV_OCL_RUN(condition, func) CV_OCL_RUN_(condition, func) argument
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/opencl/ |
| H A D | ocl_defs.hpp | 29 #define CV_OCL_RUN_(condition, func, ...) \ argument 31 if (cv::ocl::isOpenCLActivated() && (condition) && func) \ 45 #define CV_OCL_RUN_(condition, func, ...) \ argument 47 if (cv::ocl::isOpenCLActivated() && (condition)) \ 61 #define CV_OCL_RUN_(condition, func, ...) \ argument 62 if (cv::ocl::isOpenCLActivated() && (condition) && func) \ 70 #define CV_OCL_RUN_(condition, func, ...) argument 73 #define CV_OCL_RUN(condition, func) CV_OCL_RUN_(condition, func) argument
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/opencl/ |
| H A D | ocl_defs.hpp | 29 #define CV_OCL_RUN_(condition, func, ...) \ argument 31 if (cv::ocl::isOpenCLActivated() && (condition) && func) \ 45 #define CV_OCL_RUN_(condition, func, ...) \ argument 47 if (cv::ocl::isOpenCLActivated() && (condition)) \ 61 #define CV_OCL_RUN_(condition, func, ...) \ argument 62 if (cv::ocl::isOpenCLActivated() && (condition) && func) \ 70 #define CV_OCL_RUN_(condition, func, ...) argument 73 #define CV_OCL_RUN(condition, func) CV_OCL_RUN_(condition, func) argument
|
| /OK3568_Linux_fs/kernel/tools/include/asm/ |
| H A 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); \
|
| /OK3568_Linux_fs/kernel/drivers/input/joystick/iforce/ |
| H A 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 …]
|
| /OK3568_Linux_fs/kernel/net/rose/ |
| H A 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 …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/ump/common/ |
| H A D | ump_kernel_common.h | 31 #define DBG_MSG_IF(level,condition,args) /* args should be in brackets */ \ argument 32 if((condition)&&((level) <= ump_debug_level)) {\ 44 #define DEBUG_ASSERT(condition) do {if(!(condition)) MSG_ERR(("ASSERT failed: " #condition)); } wh… argument 49 #define DBG_MSG_IF(level,condition,args) do {} while(0) argument 51 #define DEBUG_ASSERT(condition) do {} while(0) argument
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/net/netrom/ |
| H A D | nr_in.c | 178 nrom->condition |= NR_COND_PEER_RX_BUSY; in nr_state3_machine() 181 nrom->condition &= ~NR_COND_PEER_RX_BUSY; in nr_state3_machine() 191 if (nrom->condition & NR_COND_PEER_RX_BUSY) { in nr_state3_machine() 208 nrom->condition |= NR_COND_PEER_RX_BUSY; in nr_state3_machine() 211 nrom->condition &= ~NR_COND_PEER_RX_BUSY; in nr_state3_machine() 219 if (nrom->condition & NR_COND_PEER_RX_BUSY) { in nr_state3_machine() 228 if (nrom->condition & NR_COND_OWN_RX_BUSY) in nr_state3_machine() 239 nrom->condition |= NR_COND_OWN_RX_BUSY; in nr_state3_machine() 258 if (!(nrom->condition & NR_COND_ACK_PENDING)) { in nr_state3_machine() 259 nrom->condition |= NR_COND_ACK_PENDING; in nr_state3_machine()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/ |
| H A D | cvdef.h | 104 # define CV_StaticAssert(condition, reason) static_assert((condition), reason " " #condition) argument 106 # define CV_StaticAssert(condition, reason) _Static_assert((condition), reason " " #condition) argument 110 # define CV_StaticAssert(condition, reason) static_assert((condition), reason " " #condition) argument 114 # define CV_StaticAssert(condition, reason) static_assert((condition), reason " " #condition) argument 119 …taticAssert(condition, reason) ({ extern int __attribute__((error("CV_StaticAssert: " reason " " #… argument 124 # define CV_StaticAssert(condition, reason)\ 125 …StaticAssert_test< sizeof(cv::CV_StaticAssert_failed< static_cast<bool>(condition) >) > CVAUX_CONC…
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/ |
| H A D | cvdef.h | 104 # define CV_StaticAssert(condition, reason) static_assert((condition), reason " " #condition) argument 106 # define CV_StaticAssert(condition, reason) _Static_assert((condition), reason " " #condition) argument 110 # define CV_StaticAssert(condition, reason) static_assert((condition), reason " " #condition) argument 114 # define CV_StaticAssert(condition, reason) static_assert((condition), reason " " #condition) argument 119 …taticAssert(condition, reason) ({ extern int __attribute__((error("CV_StaticAssert: " reason " " #… argument 124 # define CV_StaticAssert(condition, reason)\ 125 …StaticAssert_test< sizeof(cv::CV_StaticAssert_failed< static_cast<bool>(condition) >) > CVAUX_CONC…
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ |
| H A D | cvdef.h | 104 # define CV_StaticAssert(condition, reason) static_assert((condition), reason " " #condition) argument 106 # define CV_StaticAssert(condition, reason) _Static_assert((condition), reason " " #condition) argument 110 # define CV_StaticAssert(condition, reason) static_assert((condition), reason " " #condition) argument 114 # define CV_StaticAssert(condition, reason) static_assert((condition), reason " " #condition) argument 119 …taticAssert(condition, reason) ({ extern int __attribute__((error("CV_StaticAssert: " reason " " #… argument 124 # define CV_StaticAssert(condition, reason)\ 125 …StaticAssert_test< sizeof(cv::CV_StaticAssert_failed< static_cast<bool>(condition) >) > CVAUX_CONC…
|
| /OK3568_Linux_fs/u-boot/drivers/i2c/ |
| H A D | mv_i2c.c | 28 u8 condition; member 143 if (msg->condition == I2C_COND_START) in i2c_transfer() 145 if (msg->condition == I2C_COND_STOP) in i2c_transfer() 176 if (msg->condition == I2C_COND_START) in i2c_transfer() 178 if (msg->condition == I2C_COND_STOP) in i2c_transfer() 255 msg.condition = I2C_COND_START; in __i2c_read() 270 msg.condition = I2C_COND_NORMAL; in __i2c_read() 280 msg.condition = I2C_COND_START; in __i2c_read() 291 msg.condition = I2C_COND_STOP; in __i2c_read() 294 msg.condition = I2C_COND_NORMAL; in __i2c_read() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/aarch64-none-linux-gnu/bits/ |
| H A D | gthr-default.h | 594 __gthread_objc_condition_allocate (objc_condition_t condition) in __gthread_objc_condition_allocate() argument 598 condition->backend = objc_malloc (sizeof (pthread_cond_t)); in __gthread_objc_condition_allocate() 600 if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL)) in __gthread_objc_condition_allocate() 602 objc_free (condition->backend); in __gthread_objc_condition_allocate() 603 condition->backend = NULL; in __gthread_objc_condition_allocate() 613 __gthread_objc_condition_deallocate (objc_condition_t condition) in __gthread_objc_condition_deallocate() argument 617 if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition->backend)) in __gthread_objc_condition_deallocate() 620 objc_free (condition->backend); in __gthread_objc_condition_deallocate() 621 condition->backend = NULL; in __gthread_objc_condition_deallocate() 628 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in __gthread_objc_condition_wait() argument [all …]
|