Home
last modified time | relevance | path

Searched refs:cond (Results 1 – 25 of 479) sorted by relevance

12345678910>>...20

/OK3568_Linux_fs/kernel/tools/perf/arch/sparc/annotate/
H A Dinstructions.c3 static int is_branch_cond(const char *cond) in is_branch_cond() argument
5 if (cond[0] == '\0') in is_branch_cond()
8 if (cond[0] == 'a' && cond[1] == '\0') in is_branch_cond()
11 if (cond[0] == 'c' && in is_branch_cond()
12 (cond[1] == 'c' || cond[1] == 's') && in is_branch_cond()
13 cond[2] == '\0') in is_branch_cond()
16 if (cond[0] == 'e' && in is_branch_cond()
17 (cond[1] == '\0' || in is_branch_cond()
18 (cond[1] == 'q' && cond[2] == '\0'))) in is_branch_cond()
21 if (cond[0] == 'g' && in is_branch_cond()
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dmmdebug.h18 #define VM_BUG_ON(cond) BUG_ON(cond) argument
19 #define VM_BUG_ON_PAGE(cond, page) \ argument
21 if (unlikely(cond)) { \
22 dump_page(page, "VM_BUG_ON_PAGE(" __stringify(cond)")");\
26 #define VM_BUG_ON_VMA(cond, vma) \ argument
28 if (unlikely(cond)) { \
33 #define VM_BUG_ON_MM(cond, mm) \ argument
35 if (unlikely(cond)) { \
40 #define VM_WARN_ON_ONCE_PAGE(cond, page) ({ \ argument
42 int __ret_warn_once = !!(cond); \
[all …]
H A Diopoll.h36 #define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \ argument
47 if (cond) \
57 (cond) ? 0 : -ETIMEDOUT; \
79 #define read_poll_timeout_atomic(op, val, cond, delay_us, timeout_us, \ argument
89 if (cond) \
99 (cond) ? 0 : -ETIMEDOUT; \
120 #define readx_poll_timeout(op, addr, val, cond, sleep_us, timeout_us) \ argument
121 read_poll_timeout(op, val, cond, sleep_us, timeout_us, false, addr)
140 #define readx_poll_timeout_atomic(op, addr, val, cond, delay_us, timeout_us) \ argument
141 read_poll_timeout_atomic(op, val, cond, delay_us, timeout_us, false, addr)
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/mpp/include/rockchip/
H A Dmpp_log.h53 #define mpp_logf_c(cond, fmt, ...) do { if (cond) mpp_logf(fmt, ## __VA_ARGS__); } while (0) argument
54 #define mpp_loge_c(cond, fmt, ...) do { if (cond) mpp_loge(fmt, ## __VA_ARGS__); } while (0) argument
55 #define mpp_logw_c(cond, fmt, ...) do { if (cond) mpp_logw(fmt, ## __VA_ARGS__); } while (0) argument
56 #define mpp_logi_c(cond, fmt, ...) do { if (cond) mpp_logi(fmt, ## __VA_ARGS__); } while (0) argument
57 #define mpp_logd_c(cond, fmt, ...) do { if (cond) mpp_logd(fmt, ## __VA_ARGS__); } while (0) argument
58 #define mpp_logv_c(cond, fmt, ...) do { if (cond) mpp_logv(fmt, ## __VA_ARGS__); } while (0) argument
60 #define mpp_logf_cf(cond, fmt, ...) do { if (cond) mpp_logf_f(fmt, ## __VA_ARGS__); } while (0) argument
61 #define mpp_loge_cf(cond, fmt, ...) do { if (cond) mpp_loge_f(fmt, ## __VA_ARGS__); } while (0) argument
62 #define mpp_logw_cf(cond, fmt, ...) do { if (cond) mpp_logw_f(fmt, ## __VA_ARGS__); } while (0) argument
63 #define mpp_logi_cf(cond, fmt, ...) do { if (cond) mpp_logi_f(fmt, ## __VA_ARGS__); } while (0) argument
[all …]
/OK3568_Linux_fs/external/mpp/inc/
H A Dmpp_log.h53 #define mpp_logf_c(cond, fmt, ...) do { if (cond) mpp_logf(fmt, ## __VA_ARGS__); } while (0) argument
54 #define mpp_loge_c(cond, fmt, ...) do { if (cond) mpp_loge(fmt, ## __VA_ARGS__); } while (0) argument
55 #define mpp_logw_c(cond, fmt, ...) do { if (cond) mpp_logw(fmt, ## __VA_ARGS__); } while (0) argument
56 #define mpp_logi_c(cond, fmt, ...) do { if (cond) mpp_logi(fmt, ## __VA_ARGS__); } while (0) argument
57 #define mpp_logd_c(cond, fmt, ...) do { if (cond) mpp_logd(fmt, ## __VA_ARGS__); } while (0) argument
58 #define mpp_logv_c(cond, fmt, ...) do { if (cond) mpp_logv(fmt, ## __VA_ARGS__); } while (0) argument
60 #define mpp_logf_cf(cond, fmt, ...) do { if (cond) mpp_logf_f(fmt, ## __VA_ARGS__); } while (0) argument
61 #define mpp_loge_cf(cond, fmt, ...) do { if (cond) mpp_loge_f(fmt, ## __VA_ARGS__); } while (0) argument
62 #define mpp_logw_cf(cond, fmt, ...) do { if (cond) mpp_logw_f(fmt, ## __VA_ARGS__); } while (0) argument
63 #define mpp_logi_cf(cond, fmt, ...) do { if (cond) mpp_logi_f(fmt, ## __VA_ARGS__); } while (0) argument
[all …]
/OK3568_Linux_fs/u-boot/include/linux/
H A Diopoll.h28 #define readx_poll_timeout(op, addr, val, cond, timeout_us) \ argument
33 if (cond) \
40 (cond) ? 0 : -ETIMEDOUT; \
44 #define readb_poll_timeout(addr, val, cond, timeout_us) \ argument
45 readx_poll_timeout(readb, addr, val, cond, timeout_us)
47 #define readw_poll_timeout(addr, val, cond, timeout_us) \ argument
48 readx_poll_timeout(readw, addr, val, cond, timeout_us)
50 #define readl_poll_timeout(addr, val, cond, timeout_us) \ argument
51 readx_poll_timeout(readl, addr, val, cond, timeout_us)
53 #define readq_poll_timeout(addr, val, cond, timeout_us) \ argument
[all …]
/OK3568_Linux_fs/kernel/arch/parisc/math-emu/
H A Ddfcmp.c38 unsigned int cond, unsigned int *status) in dbl_fcmp() argument
60 && (Exception(cond) || Dbl_isone_signaling(leftp1))) in dbl_fcmp()
64 && (Exception(cond) || Dbl_isone_signaling(rightp1))) ) in dbl_fcmp()
67 Set_status_cbit(Unordered(cond)); in dbl_fcmp()
71 Set_status_cbit(Unordered(cond)); in dbl_fcmp()
83 Set_status_cbit(Unordered(cond)); in dbl_fcmp()
98 Set_status_cbit(Equal(cond)); in dbl_fcmp()
102 Set_status_cbit(Lessthan(cond)); in dbl_fcmp()
106 Set_status_cbit(Greaterthan(cond)); in dbl_fcmp()
113 Set_status_cbit(Equal(cond)); in dbl_fcmp()
[all …]
H A Dsfcmp.c37 unsigned int cond, unsigned int *status) in sgl_fcmp() argument
60 && (Exception(cond) || Sgl_isone_signaling(left))) in sgl_fcmp()
64 && (Exception(cond) || Sgl_isone_signaling(right)) ) ) in sgl_fcmp()
67 Set_status_cbit(Unordered(cond)); in sgl_fcmp()
71 Set_status_cbit(Unordered(cond)); in sgl_fcmp()
83 Set_status_cbit(Unordered(cond)); in sgl_fcmp()
98 Set_status_cbit(Equal(cond)); in sgl_fcmp()
102 Set_status_cbit(Lessthan(cond)); in sgl_fcmp()
106 Set_status_cbit(Greaterthan(cond)); in sgl_fcmp()
113 Set_status_cbit(Equal(cond)); in sgl_fcmp()
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/include/asm/
H A Dunified.h63 .macro it, cond
65 .macro itt, cond
67 .macro ite, cond
69 .macro ittt, cond
71 .macro itte, cond
73 .macro itet, cond
75 .macro itee, cond
77 .macro itttt, cond
79 .macro ittte, cond
81 .macro ittet, cond
[all …]
/OK3568_Linux_fs/kernel/Documentation/arm/nwfpe/
H A Dnetwinder-fpe.rst24 <LDF|STF>{cond}<S|D|E> Fd, Rn
25 <LDF|STF>{cond}<S|D|E> Fd, [Rn, #<expression>]{!}
26 <LDF|STF>{cond}<S|D|E> Fd, [Rn], #<expression>
33 <LFM|SFM>{cond}<S|D|E> Fd, <count>, [Rn]
34 <LFM|SFM>{cond}<S|D|E> Fd, <count>, [Rn, #<expression>]{!}
35 <LFM|SFM>{cond}<S|D|E> Fd, <count>, [Rn], #<expression>
38 <LFM|SFM>{cond}<FD,EA> Fd, <count>, [Rn]{!}
51 FLT{cond}<S,D,E>{P,M,Z} Fn, Rd Convert integer to floating point
52 FIX{cond}{P,M,Z} Rd, Fn Convert floating point to integer
53 WFS{cond} Rd Write floating point status register
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/mbedtls/
H A Dplatform_util.h61 #define MBEDTLS_PARAM_FAILED( cond ) assert( cond )
65 #define MBEDTLS_PARAM_FAILED( cond ) \
66 mbedtls_param_failed( #cond, __FILE__, __LINE__ )
89 #define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) \ argument
91 if( !(cond) ) \
93 MBEDTLS_PARAM_FAILED( cond ); \
99 #define MBEDTLS_INTERNAL_VALIDATE( cond ) \ argument
101 if( !(cond) ) \
103 MBEDTLS_PARAM_FAILED( cond ); \
111 #define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) do { } while( 0 )
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/mbedtls/
H A Dplatform_util.h61 #define MBEDTLS_PARAM_FAILED( cond ) assert( cond )
65 #define MBEDTLS_PARAM_FAILED( cond ) \
66 mbedtls_param_failed( #cond, __FILE__, __LINE__ )
89 #define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) \ argument
91 if( !(cond) ) \
93 MBEDTLS_PARAM_FAILED( cond ); \
99 #define MBEDTLS_INTERNAL_VALIDATE( cond ) \ argument
101 if( !(cond) ) \
103 MBEDTLS_PARAM_FAILED( cond ); \
111 #define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) do { } while( 0 )
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/mbedtls/
H A Dplatform_util.h61 #define MBEDTLS_PARAM_FAILED( cond ) assert( cond )
65 #define MBEDTLS_PARAM_FAILED( cond ) \
66 mbedtls_param_failed( #cond, __FILE__, __LINE__ )
89 #define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) \ argument
91 if( !(cond) ) \
93 MBEDTLS_PARAM_FAILED( cond ); \
99 #define MBEDTLS_INTERNAL_VALIDATE( cond ) \ argument
101 if( !(cond) ) \
103 MBEDTLS_PARAM_FAILED( cond ); \
111 #define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) do { } while( 0 )
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/mbedtls/
H A Dplatform_util.h61 #define MBEDTLS_PARAM_FAILED( cond ) assert( cond )
65 #define MBEDTLS_PARAM_FAILED( cond ) \
66 mbedtls_param_failed( #cond, __FILE__, __LINE__ )
89 #define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) \ argument
91 if( !(cond) ) \
93 MBEDTLS_PARAM_FAILED( cond ); \
99 #define MBEDTLS_INTERNAL_VALIDATE( cond ) \ argument
101 if( !(cond) ) \
103 MBEDTLS_PARAM_FAILED( cond ); \
111 #define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) do { } while( 0 )
[all …]
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/minzip/
H A DLog.h56 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0)) argument
60 #define LOGV_IF(cond, ...) ((void)0) argument
62 #define LOGV_IF(cond, ...) \ argument
63 ( (CONDITION(cond)) \
80 #define LOGD_IF(cond, ...) \ argument
81 ( (CONDITION(cond)) \
94 #define LOGI_IF(cond, ...) \ argument
95 ( (CONDITION(cond)) \
108 #define LOGW_IF(cond, ...) \ argument
109 ( (CONDITION(cond)) \
[all …]
/OK3568_Linux_fs/external/recovery/minzip/
H A DLog.h56 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0)) argument
60 #define LOGV_IF(cond, ...) ((void)0) argument
62 #define LOGV_IF(cond, ...) \ argument
63 ( (CONDITION(cond)) \
80 #define LOGD_IF(cond, ...) \ argument
81 ( (CONDITION(cond)) \
94 #define LOGI_IF(cond, ...) \ argument
95 ( (CONDITION(cond)) \
108 #define LOGW_IF(cond, ...) \ argument
109 ( (CONDITION(cond)) \
[all …]
/OK3568_Linux_fs/external/xserver/include/
H A Dmisc.h418 #define __BUG_WARN_MSG(cond, with_msg, ...) \ argument
419 do { if (cond) { \
420 ErrorFSigSafe("BUG: triggered 'if (" #cond ")'\n"); \
427 #define BUG_WARN_MSG(cond, ...) \ argument
428 __BUG_WARN_MSG(cond, 1, __VA_ARGS__)
430 #define BUG_WARN(cond) __BUG_WARN_MSG(cond, 0, NULL) argument
432 #define BUG_RETURN(cond) \ argument
433 do { if (cond) { __BUG_WARN_MSG(cond, 0, NULL); return; } } while(0)
435 #define BUG_RETURN_MSG(cond, ...) \ argument
436 do { if (cond) { __BUG_WARN_MSG(cond, 1, __VA_ARGS__); return; } } while(0)
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/
H A Ddhd_linux_pktdump.c560 bool cond; in dhd_dump_wsc_message() local
594 cond = (tx && pktfate) ? FALSE : TRUE; in dhd_dump_wsc_message()
608 DHD_STATLOG_DATA(dhd, ST(WPS_M1), ifidx, tx, cond); in dhd_dump_wsc_message()
612 DHD_STATLOG_DATA(dhd, ST(WPS_M2), ifidx, tx, cond); in dhd_dump_wsc_message()
616 DHD_STATLOG_DATA(dhd, ST(WPS_M3), ifidx, tx, cond); in dhd_dump_wsc_message()
620 DHD_STATLOG_DATA(dhd, ST(WPS_M4), ifidx, tx, cond); in dhd_dump_wsc_message()
624 DHD_STATLOG_DATA(dhd, ST(WPS_M5), ifidx, tx, cond); in dhd_dump_wsc_message()
628 DHD_STATLOG_DATA(dhd, ST(WPS_M6), ifidx, tx, cond); in dhd_dump_wsc_message()
632 DHD_STATLOG_DATA(dhd, ST(WPS_M7), ifidx, tx, cond); in dhd_dump_wsc_message()
636 DHD_STATLOG_DATA(dhd, ST(WPS_M8), ifidx, tx, cond); in dhd_dump_wsc_message()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/
H A Ddhd_linux_pktdump.c560 bool cond; in dhd_dump_wsc_message() local
594 cond = (tx && pktfate) ? FALSE : TRUE; in dhd_dump_wsc_message()
608 DHD_STATLOG_DATA(dhd, ST(WPS_M1), ifidx, tx, cond); in dhd_dump_wsc_message()
612 DHD_STATLOG_DATA(dhd, ST(WPS_M2), ifidx, tx, cond); in dhd_dump_wsc_message()
616 DHD_STATLOG_DATA(dhd, ST(WPS_M3), ifidx, tx, cond); in dhd_dump_wsc_message()
620 DHD_STATLOG_DATA(dhd, ST(WPS_M4), ifidx, tx, cond); in dhd_dump_wsc_message()
624 DHD_STATLOG_DATA(dhd, ST(WPS_M5), ifidx, tx, cond); in dhd_dump_wsc_message()
628 DHD_STATLOG_DATA(dhd, ST(WPS_M6), ifidx, tx, cond); in dhd_dump_wsc_message()
632 DHD_STATLOG_DATA(dhd, ST(WPS_M7), ifidx, tx, cond); in dhd_dump_wsc_message()
636 DHD_STATLOG_DATA(dhd, ST(WPS_M8), ifidx, tx, cond); in dhd_dump_wsc_message()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/infineon/
H A Ddhd_linux_pktdump.c560 bool cond; in dhd_dump_wsc_message() local
594 cond = (tx && pktfate) ? FALSE : TRUE; in dhd_dump_wsc_message()
608 DHD_STATLOG_DATA(dhd, ST(WPS_M1), ifidx, tx, cond); in dhd_dump_wsc_message()
612 DHD_STATLOG_DATA(dhd, ST(WPS_M2), ifidx, tx, cond); in dhd_dump_wsc_message()
616 DHD_STATLOG_DATA(dhd, ST(WPS_M3), ifidx, tx, cond); in dhd_dump_wsc_message()
620 DHD_STATLOG_DATA(dhd, ST(WPS_M4), ifidx, tx, cond); in dhd_dump_wsc_message()
624 DHD_STATLOG_DATA(dhd, ST(WPS_M5), ifidx, tx, cond); in dhd_dump_wsc_message()
628 DHD_STATLOG_DATA(dhd, ST(WPS_M6), ifidx, tx, cond); in dhd_dump_wsc_message()
632 DHD_STATLOG_DATA(dhd, ST(WPS_M7), ifidx, tx, cond); in dhd_dump_wsc_message()
636 DHD_STATLOG_DATA(dhd, ST(WPS_M8), ifidx, tx, cond); in dhd_dump_wsc_message()
[all …]
/OK3568_Linux_fs/external/rockit/tgi/sdk/include/
H A Drt_debug.h36 #define RT_ASSERT(cond) do { \ argument
37 if (!(cond)) { \
39 #cond, __FUNCTION__, __LINE__); \
44 #define RT_ASSERT_IF(cond, fmt, ...) static_cast<void>(0) argument
46 #define RT_ASSERT_RESULT(cond) if (cond) {} do {} while (false) argument
48 #define RT_ASSERT(cond) argument
49 #define RT_ASSERT_IF(cond, fmt, ...) argument
51 #define RT_ASSERT_RESULT(cond) argument
/OK3568_Linux_fs/kernel/arch/arm64/kvm/hyp/
H A Daarch32.c51 int cond; in kvm_condition_valid32() local
58 cond = kvm_vcpu_get_condition(vcpu); in kvm_condition_valid32()
59 if (cond == 0xE) in kvm_condition_valid32()
64 if (cond < 0) { in kvm_condition_valid32()
75 cond = (it >> 4); in kvm_condition_valid32()
80 if (!((cc_map[cond] >> cpsr_cond) & 1)) in kvm_condition_valid32()
98 unsigned long itbits, cond; in kvm_adjust_itstate() local
105 cond = (cpsr & 0xe000) >> 13; in kvm_adjust_itstate()
111 itbits = cond = 0; in kvm_adjust_itstate()
116 cpsr |= cond << 13; in kvm_adjust_itstate()
/OK3568_Linux_fs/yocto/meta-browser/meta-firefox/recipes-browser/firefox/firefox/fixes/
H A DBug-1556197-amend-Bug-1544631-for-fixing-mips32.patch14 @@ -820,19 +820,23 @@ void MacroAssembler::branchTestSymbol(Condition cond, const ValueOperand& val…
16 void MacroAssembler::branchTestBigInt(Condition cond, Register tag,
18 - branchTestBigIntImpl(cond, tag, label);
19 + MOZ_ASSERT(cond == Equal || cond == NotEqual);
20 + ma_b(tag, ImmTag(JSVAL_TAG_BIGINT), label, cond);
23 void MacroAssembler::branchTestBigInt(Condition cond, const BaseIndex& address,
29 branchTestBigInt(cond, scratch2, label);
32 void MacroAssembler::branchTestBigInt(Condition cond, const ValueOperand& value,
34 - branchTestBigInt(cond, value.typeReg(), label);
37 + branchTestBigInt(cond, scratch2, label);
/OK3568_Linux_fs/u-boot/include/test/
H A Dut.h26 const char *func, const char *cond);
39 const char *func, const char *cond, const char *fmt, ...)
44 #define ut_assert(cond) \ argument
45 if (!(cond)) { \
46 ut_fail(uts, __FILE__, __LINE__, __func__, #cond); \
51 #define ut_assertf(cond, fmt, args...) \ argument
52 if (!(cond)) { \
53 ut_failf(uts, __FILE__, __LINE__, __func__, #cond, \
120 #define ut_assertok(cond) ut_asserteq(0, cond) argument
/OK3568_Linux_fs/kernel/drivers/staging/rtl8188eu/hal/
H A Drf_cfg.c18 u32 cond; in check_condition() local
23 cond = condition & 0x000000FF; in check_condition()
24 if ((_board == cond) && cond != 0x00) in check_condition()
27 cond = condition & 0x0000FF00; in check_condition()
28 cond >>= 8; in check_condition()
29 if ((_interface & cond) == 0 && cond != 0x07) in check_condition()
32 cond = condition & 0x00FF0000; in check_condition()
33 cond >>= 16; in check_condition()
34 if ((_platform & cond) == 0 && cond != 0x0F) in check_condition()

12345678910>>...20