Home
last modified time | relevance | path

Searched refs:cond1 (Results 1 - 25 of 26) sorted by relevance

12

/kernel/linux/linux-6.6/drivers/staging/rtl8723bs/hal/
H A DHalHWImg8723B_MAC.c22 u32 cond1 = Condition1, cond2 = Condition2; in CheckPositive() local
40 if (((cond1 & 0x0000F000) != 0) && ((cond1 & 0x0000F000) != (driver1 & 0x0000F000))) in CheckPositive()
42 if (((cond1 & 0x0F000000) != 0) && ((cond1 & 0x0F000000) != (driver1 & 0x0F000000))) in CheckPositive()
48 cond1 &= 0x000F0FFF; in CheckPositive()
51 if ((cond1 & driver1) == cond1) { in CheckPositive()
53 if ((cond1 & 0x0F) == 0) /* BoardType is DONTCARE */ in CheckPositive()
56 if ((cond1 in CheckPositive()
[all...]
H A DHalHWImg8723B_RF.c22 u32 cond1 = Condition1, cond2 = Condition2; in CheckPositive() local
40 ((cond1 & 0x0000F000) != 0) && in CheckPositive()
41 ((cond1 & 0x0000F000) != (driver1 & 0x0000F000)) in CheckPositive()
46 ((cond1 & 0x0F000000) != 0) && in CheckPositive()
47 ((cond1 & 0x0F000000) != (driver1 & 0x0F000000)) in CheckPositive()
53 cond1 &= 0x000F0FFF; in CheckPositive()
56 if ((cond1 & driver1) == cond1) { in CheckPositive()
59 if ((cond1 & 0x0F) == 0) /* BoardType is DONTCARE */ in CheckPositive()
62 if ((cond1 in CheckPositive()
[all...]
H A DHalHWImg8723B_BB.c22 u32 cond1 = Condition1, cond2 = Condition2; in CheckPositive() local
40 if (((cond1 & 0x0000F000) != 0) && ((cond1 & 0x0000F000) != (driver1 & 0x0000F000))) in CheckPositive()
42 if (((cond1 & 0x0F000000) != 0) && ((cond1 & 0x0F000000) != (driver1 & 0x0F000000))) in CheckPositive()
48 cond1 &= 0x000F0FFF; in CheckPositive()
51 if ((cond1 & driver1) == cond1) { in CheckPositive()
54 if ((cond1 & 0x0F) == 0) /* BoardType is DONTCARE */ in CheckPositive()
57 if ((cond1 in CheckPositive()
[all...]
/kernel/linux/linux-5.10/drivers/staging/rtl8723bs/hal/
H A DHalHWImg8723B_MAC.c22 u32 cond1 = Condition1, cond2 = Condition2; in CheckPositive() local
41 "===> [8812A] CheckPositive (cond1, cond2) = (0x%X 0x%X)\n", in CheckPositive()
42 cond1, in CheckPositive()
82 if (((cond1 & 0x0000F000) != 0) && ((cond1 & 0x0000F000) != (driver1 & 0x0000F000))) in CheckPositive()
84 if (((cond1 & 0x0F000000) != 0) && ((cond1 & 0x0F000000) != (driver1 & 0x0F000000))) in CheckPositive()
90 cond1 &= 0x000F0FFF; in CheckPositive()
93 if ((cond1 & driver1) == cond1) { in CheckPositive()
[all...]
H A DHalHWImg8723B_RF.c22 u32 cond1 = Condition1, cond2 = Condition2; in CheckPositive() local
41 "===> [8812A] CheckPositive (cond1, cond2) = (0x%X 0x%X)\n", in CheckPositive()
42 cond1, in CheckPositive()
82 ((cond1 & 0x0000F000) != 0) && in CheckPositive()
83 ((cond1 & 0x0000F000) != (driver1 & 0x0000F000)) in CheckPositive()
88 ((cond1 & 0x0F000000) != 0) && in CheckPositive()
89 ((cond1 & 0x0F000000) != (driver1 & 0x0F000000)) in CheckPositive()
95 cond1 &= 0x000F0FFF; in CheckPositive()
98 if ((cond1 & driver1) == cond1) { in CheckPositive()
[all...]
H A DHalHWImg8723B_BB.c22 u32 cond1 = Condition1, cond2 = Condition2; in CheckPositive() local
41 "===> [8812A] CheckPositive (cond1, cond2) = (0x%X 0x%X)\n", in CheckPositive()
42 cond1, in CheckPositive()
81 if (((cond1 & 0x0000F000) != 0) && ((cond1 & 0x0000F000) != (driver1 & 0x0000F000))) in CheckPositive()
83 if (((cond1 & 0x0F000000) != 0) && ((cond1 & 0x0F000000) != (driver1 & 0x0F000000))) in CheckPositive()
89 cond1 &= 0x000F0FFF; in CheckPositive()
92 if ((cond1 & driver1) == cond1) { in CheckPositive()
[all...]
/kernel/liteos_m/testsuites/sample/posix/pthread/
H A DIt_posix_pthread_006.c36 pthread_cond_t cond1; in Testcase() local
43 rc = pthread_cond_init(&cond1, &condattr); in Testcase()
49 rc = pthread_cond_destroy(&cond1); in Testcase()
56 (void)pthread_cond_destroy(&cond1); in Testcase()
H A DIt_posix_pthread_007.c37 pthread_cond_t cond1, cond2; in Testcase() local
44 /* Initialize cond1 with the default condition variable attribute */ in Testcase()
45 rc = pthread_cond_init(&cond1, &condattr); in Testcase()
56 /* Destroy cond1 */ in Testcase()
57 rc = pthread_cond_destroy(&cond1); in Testcase()
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/
H A DIt_posix_pthread_069.c43 pthread_cond_t cond1; in Testcase() local
50 rc = pthread_cond_init(&cond1, &condattr); in Testcase()
56 rc = pthread_cond_destroy(&cond1); in Testcase()
63 (void)pthread_cond_destroy(&cond1); in Testcase()
H A DIt_posix_pthread_071.c44 pthread_cond_t cond1, cond2; in Testcase() local
51 /* Initialize cond1 with the default condition variable attribute */ in Testcase()
52 rc = pthread_cond_init(&cond1, &condattr); in Testcase()
63 /* Destroy cond1 */ in Testcase()
64 rc = pthread_cond_destroy(&cond1); in Testcase()
H A DIt_posix_pthread_108.c43 pthread_cond_t cond1; in Testcase() local
/kernel/liteos_a/testsuites/unittest/libc/posix/pthread/full/
H A DIt_posix_pthread_069.cpp36 pthread_cond_t cond1; in Testcase() local
43 rc = pthread_cond_init(&cond1, &condattr); in Testcase()
50 rc = pthread_cond_destroy(&cond1); in Testcase()
H A DIt_posix_pthread_071.cpp37 pthread_cond_t cond1, cond2; in Testcase() local
44 /* Initialize cond1 with the default condition variable attribute */ in Testcase()
45 rc = pthread_cond_init(&cond1, &condattr); in Testcase()
56 /* Destroy cond1 */ in Testcase()
57 rc = pthread_cond_destroy(&cond1); in Testcase()
/kernel/liteos_m/testsuites/unittest/xts/ipc/cond/
H A Dpthread_cond_test.c61 pthread_cond_t cond1; variable
62 ret = pthread_cond_init(&cond1, &condAttr);
83 pthread_cond_t cond1; variable
84 ret = pthread_cond_init(&cond1, &condAttr);
86 ret = pthread_cond_destroy(&cond1);
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8723be/
H A Dphy.c148 u32 cond1 = condition1, cond2 = condition2; in _rtl8723be_check_positive() local
162 "===> [8812A] CheckPositive (cond1, cond2) = (0x%X 0x%X)\n", in _rtl8723be_check_positive()
163 cond1, cond2); in _rtl8723be_check_positive()
177 if (((cond1 & 0x0000F000) != 0) && ((cond1 & 0x0000F000) != in _rtl8723be_check_positive()
180 if (((cond1 & 0x0F000000) != 0) && ((cond1 & 0x0F000000) != in _rtl8723be_check_positive()
187 cond1 &= 0x00FF0FFF; in _rtl8723be_check_positive()
190 if ((cond1 & driver1) == cond1) { in _rtl8723be_check_positive()
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtlwifi/rtl8723be/
H A Dphy.c148 u32 cond1 = condition1, cond2 = condition2; in _rtl8723be_check_positive() local
162 "===> [8812A] CheckPositive (cond1, cond2) = (0x%X 0x%X)\n", in _rtl8723be_check_positive()
163 cond1, cond2); in _rtl8723be_check_positive()
177 if (((cond1 & 0x0000F000) != 0) && ((cond1 & 0x0000F000) != in _rtl8723be_check_positive()
180 if (((cond1 & 0x0F000000) != 0) && ((cond1 & 0x0F000000) != in _rtl8723be_check_positive()
187 cond1 &= 0x00FF0FFF; in _rtl8723be_check_positive()
190 if ((cond1 & driver1) == cond1) { in _rtl8723be_check_positive()
[all...]
/kernel/linux/linux-5.10/drivers/scsi/qla2xxx/
H A Dqla_tmpl.h206 __le32 cond1; member
H A Dqla_tmpl.c723 ulong cond1 = le32_to_cpu(ent->t276.cond1); in qla27xx_fwdt_entry_t276() local
728 if (type != cond1 || func != cond2) { in qla27xx_fwdt_entry_t276()
/kernel/linux/linux-6.6/drivers/scsi/qla2xxx/
H A Dqla_tmpl.h206 __le32 cond1; member
H A Dqla_tmpl.c728 ulong cond1 = le32_to_cpu(ent->t276.cond1); in qla27xx_fwdt_entry_t276() local
733 if (type != cond1 || func != cond2) { in qla27xx_fwdt_entry_t276()
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
H A Dphy.c741 u32 cond1 = condition1, cond2 = condition2; in _rtl8821ae_check_positive() local
755 "===> [8812A] CheckPositive (cond1, cond2) = (0x%X 0x%X)\n", in _rtl8821ae_check_positive()
756 cond1, cond2); in _rtl8821ae_check_positive()
770 if (((cond1 & 0x0000F000) != 0) && ((cond1 & 0x0000F000) != in _rtl8821ae_check_positive()
773 if (((cond1 & 0x0F000000) != 0) && ((cond1 & 0x0F000000) != in _rtl8821ae_check_positive()
780 cond1 &= 0x00FF0FFF; in _rtl8821ae_check_positive()
783 if ((cond1 & driver1) == cond1) { in _rtl8821ae_check_positive()
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
H A Dphy.c740 u32 cond1 = condition1, cond2 = condition2; in _rtl8821ae_check_positive() local
754 "===> [8812A] CheckPositive (cond1, cond2) = (0x%X 0x%X)\n", in _rtl8821ae_check_positive()
755 cond1, cond2); in _rtl8821ae_check_positive()
769 if (((cond1 & 0x0000F000) != 0) && ((cond1 & 0x0000F000) != in _rtl8821ae_check_positive()
772 if (((cond1 & 0x0F000000) != 0) && ((cond1 & 0x0F000000) != in _rtl8821ae_check_positive()
779 cond1 &= 0x00FF0FFF; in _rtl8821ae_check_positive()
782 if ((cond1 & driver1) == cond1) { in _rtl8821ae_check_positive()
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/
H A Dqed.h104 #define D_TRINE(val, cond1, cond2, true1, true2, def) \
105 (val == (cond1) ? true1 : \
H A Dqed_debug.c124 static u32 cond1(const u32 *r, const u32 *imm) in cond1() function
162 cond1,
/kernel/linux/linux-6.6/drivers/net/ethernet/qlogic/qed/
H A Dqed.h99 #define D_TRINE(val, cond1, cond2, true1, true2, def) \
100 ((val) == (cond1) ? true1 : \

Completed in 59 milliseconds

12