Home
last modified time | relevance | path

Searched refs:v2 (Results 1 – 25 of 1590) sorted by relevance

12345678910>>...64

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Dcheck.hpp68 CV_EXPORTS void CV_NORETURN check_failed_auto(const int v1, const int v2, const CheckContext& ctx);
69 CV_EXPORTS void CV_NORETURN check_failed_auto(const size_t v1, const size_t v2, const CheckContext&…
70 CV_EXPORTS void CV_NORETURN check_failed_auto(const float v1, const float v2, const CheckContext& c…
71 CV_EXPORTS void CV_NORETURN check_failed_auto(const double v1, const double v2, const CheckContext&…
72 CV_EXPORTS void CV_NORETURN check_failed_MatDepth(const int v1, const int v2, const CheckContext& c…
73 CV_EXPORTS void CV_NORETURN check_failed_MatType(const int v1, const int v2, const CheckContext& ct…
74 CV_EXPORTS void CV_NORETURN check_failed_MatChannels(const int v1, const int v2, const CheckContext…
85 #define CV__TEST_EQ(v1, v2) ((v1) == (v2)) argument
86 #define CV__TEST_NE(v1, v2) ((v1) != (v2)) argument
87 #define CV__TEST_LE(v1, v2) ((v1) <= (v2)) argument
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/
H A Dcheck.hpp68 CV_EXPORTS void CV_NORETURN check_failed_auto(const int v1, const int v2, const CheckContext& ctx);
69 CV_EXPORTS void CV_NORETURN check_failed_auto(const size_t v1, const size_t v2, const CheckContext&…
70 CV_EXPORTS void CV_NORETURN check_failed_auto(const float v1, const float v2, const CheckContext& c…
71 CV_EXPORTS void CV_NORETURN check_failed_auto(const double v1, const double v2, const CheckContext&…
72 CV_EXPORTS void CV_NORETURN check_failed_MatDepth(const int v1, const int v2, const CheckContext& c…
73 CV_EXPORTS void CV_NORETURN check_failed_MatType(const int v1, const int v2, const CheckContext& ct…
74 CV_EXPORTS void CV_NORETURN check_failed_MatChannels(const int v1, const int v2, const CheckContext…
85 #define CV__TEST_EQ(v1, v2) ((v1) == (v2)) argument
86 #define CV__TEST_NE(v1, v2) ((v1) != (v2)) argument
87 #define CV__TEST_LE(v1, v2) ((v1) <= (v2)) argument
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/
H A Dcheck.hpp68 CV_EXPORTS void CV_NORETURN check_failed_auto(const int v1, const int v2, const CheckContext& ctx);
69 CV_EXPORTS void CV_NORETURN check_failed_auto(const size_t v1, const size_t v2, const CheckContext&…
70 CV_EXPORTS void CV_NORETURN check_failed_auto(const float v1, const float v2, const CheckContext& c…
71 CV_EXPORTS void CV_NORETURN check_failed_auto(const double v1, const double v2, const CheckContext&…
72 CV_EXPORTS void CV_NORETURN check_failed_MatDepth(const int v1, const int v2, const CheckContext& c…
73 CV_EXPORTS void CV_NORETURN check_failed_MatType(const int v1, const int v2, const CheckContext& ct…
74 CV_EXPORTS void CV_NORETURN check_failed_MatChannels(const int v1, const int v2, const CheckContext…
85 #define CV__TEST_EQ(v1, v2) ((v1) == (v2)) argument
86 #define CV__TEST_NE(v1, v2) ((v1) != (v2)) argument
87 #define CV__TEST_LE(v1, v2) ((v1) <= (v2)) argument
[all …]
/OK3568_Linux_fs/external/xserver/hw/dmx/glxProxy/
H A Dglxvisuals.c39 glxVisualsMatch(__GLXvisualConfig * v1, __GLXvisualConfig * v2) in glxVisualsMatch() argument
41 if ((v1->class == v2->class) && in glxVisualsMatch()
42 (v1->rgba == v2->rgba) && in glxVisualsMatch()
43 (v1->redSize == v2->redSize) && in glxVisualsMatch()
44 (v1->greenSize == v2->greenSize) && in glxVisualsMatch()
45 (v1->blueSize == v2->blueSize) && in glxVisualsMatch()
46 (v1->alphaSize == v2->alphaSize) && in glxVisualsMatch()
47 (v1->redMask == v2->redMask) && in glxVisualsMatch()
48 (v1->greenMask == v2->greenMask) && in glxVisualsMatch()
49 (v1->blueMask == v2->blueMask) && in glxVisualsMatch()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/doublevectors/
H A Dtst_doublevectors.cpp67 QDoubleVector2D v2(v1); // copy constructor in constructor2dTest() local
68 QCOMPARE(v2.x(), 1.1); in constructor2dTest()
69 QCOMPARE(v2.y(), -2.5); in constructor2dTest()
85 QDoubleVector2D v2 = v1.normalized(); in basicFunctions2dTest() local
90 QCOMPARE(v2.x(), 3.0/5.0); in basicFunctions2dTest()
91 QCOMPARE(v2.y(), 4.0/5.0); in basicFunctions2dTest()
102 QDoubleVector2D v2 = -v1; in unaryOperator2dTest() local
103 QCOMPARE(v2.x(), -1.1); in unaryOperator2dTest()
104 QCOMPARE(v2.y(), -2.2); in unaryOperator2dTest()
110 v2 /= 2.0; in unaryOperator2dTest()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqdoublevector3d_p.h97 …ECL_CONSTEXPR static inline double dotProduct(const QDoubleVector3D &v1, const QDoubleVector3D &v2) in dotProduct() argument
98 { return v1.xp * v2.xp + v1.yp * v2.yp + v1.zp * v2.zp; } in dotProduct()
100 …PR static inline QDoubleVector3D crossProduct(const QDoubleVector3D &v1, const QDoubleVector3D &v2) in crossProduct() argument
101 { return QDoubleVector3D(v1.yp * v2.zp - v1.zp * v2.yp, in crossProduct()
102 v1.zp * v2.xp - v1.xp * v2.zp, in crossProduct()
103 v1.xp * v2.yp - v1.yp * v2.xp); } in crossProduct()
105 static QDoubleVector3D normal(const QDoubleVector3D &v1, const QDoubleVector3D &v2);
107 (const QDoubleVector3D &v1, const QDoubleVector3D &v2, const QDoubleVector3D &v3);
113 …iend Q_DECL_CONSTEXPR inline bool operator==(const QDoubleVector3D &v1, const QDoubleVector3D &v2);
114 …iend Q_DECL_CONSTEXPR inline bool operator!=(const QDoubleVector3D &v1, const QDoubleVector3D &v2);
[all …]
H A Dqdoublevector2d_p.h97 …ECL_CONSTEXPR static inline double dotProduct(const QDoubleVector2D &v1, const QDoubleVector2D &v2) in dotProduct() argument
98 { return v1.xp * v2.xp + v1.yp * v2.yp; } in dotProduct()
101 …iend Q_DECL_CONSTEXPR inline bool operator==(const QDoubleVector2D &v1, const QDoubleVector2D &v2);
102 …iend Q_DECL_CONSTEXPR inline bool operator!=(const QDoubleVector2D &v1, const QDoubleVector2D &v2);
103 …TEXPR inline const QDoubleVector2D operator+(const QDoubleVector2D &v1, const QDoubleVector2D &v2);
104 …TEXPR inline const QDoubleVector2D operator-(const QDoubleVector2D &v1, const QDoubleVector2D &v2);
107 …TEXPR inline const QDoubleVector2D operator*(const QDoubleVector2D &v1, const QDoubleVector2D &v2);
111 …d Q_DECL_CONSTEXPR inline bool qFuzzyCompare(const QDoubleVector2D &v1, const QDoubleVector2D &v2);
196 Q_DECL_CONSTEXPR inline bool operator==(const QDoubleVector2D &v1, const QDoubleVector2D &v2)
198 return v1.xp == v2.xp && v1.yp == v2.yp;
[all …]
/OK3568_Linux_fs/tools/windows/RKDevTool/RKDevTool_Release/
H A Drevision.txt35 v2.99 revision(2022/08/08)
39 v2.98 revision(2022/08/04)
42 v2.97 revision(2022/06/13)
46 v2.96 revision(2022/06/07)
50 v2.95 revision(2022/05/19)
53 v2.94 revision(2022/03/17)
57 v2.93 revision(2021/12/31)
61 v2.92 revision(2021/11/30)
65 v2.91 revision(2021/11/10)
69 v2.9 revision(2021/09/22)
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/rtl8723bs/hal/
H A DHalHWImg8723B_BB.c275 u32 v2 = Array[i+1]; in ODM_ReadAndConfig_MP_8723B_AGC_TAB() local
279 odm_ConfigBB_AGC_8723B(pDM_Odm, v1, bMaskDWord, v2); in ODM_ReadAndConfig_MP_8723B_AGC_TAB()
288 READ_NEXT_PAIR(v1, v2, i); in ODM_ReadAndConfig_MP_8723B_AGC_TAB()
289 } else if (!CheckPositive(pDM_Odm, v1, v2)) { in ODM_ReadAndConfig_MP_8723B_AGC_TAB()
291 READ_NEXT_PAIR(v1, v2, i); in ODM_ReadAndConfig_MP_8723B_AGC_TAB()
292 READ_NEXT_PAIR(v1, v2, i); in ODM_ReadAndConfig_MP_8723B_AGC_TAB()
294 READ_NEXT_PAIR(v1, v2, i); in ODM_ReadAndConfig_MP_8723B_AGC_TAB()
295 if (!CheckNegative(pDM_Odm, v1, v2)) in ODM_ReadAndConfig_MP_8723B_AGC_TAB()
299 READ_NEXT_PAIR(v1, v2, i); in ODM_ReadAndConfig_MP_8723B_AGC_TAB()
307 READ_NEXT_PAIR(v1, v2, i); in ODM_ReadAndConfig_MP_8723B_AGC_TAB()
[all …]
/OK3568_Linux_fs/tools/linux/Linux_Upgrade_Tool/Linux_Upgrade_Tool/
H A Drevision.txt1 v2.22 revision(2023/07/03)
4 v2.21 revision(2023/04/12)
7 v2.20 revision(2023/03/07)
11 v2.19 revision(2023/01/10)
15 v2.18 revision(2022/11/10)
18 v2.17 revision(2022/09/19)
22 v2.16 revision(2022/09/19)
26 v2.15 revision(2022/08/21)
29 v2.14 revision(2022/08/16)
33 v2.13 revision(2022/08/08)
[all …]
/OK3568_Linux_fs/kernel/arch/s390/crypto/
H A Dcrc32le-vx.S132 VPERM %v2,%v2,%v2,CONST_PERM_LE2BE
159 VGFMAG %v2,CONST_R2R1,%v2,%v6
175 VGFMAG %v1,CONST_R4R3,%v1,%v2
184 VL %v2,0,,%r3 /* Load next data chunk */
185 VPERM %v2,%v2,%v2,CONST_PERM_LE2BE
186 VGFMAG %v1,CONST_R4R3,%v1,%v2 /* Fold next data chunk */
233 VSRLB %v2,%v1,%v9 /* Store remaining bits in V2 */
235 VGFMAG %v1,CONST_R5,%v1,%v2 /* V1 = (V1 * R5) XOR V2 */
257 VUPLLF %v2,%v1
258 VGFMG %v2,CONST_RU_POLY,%v2
[all …]
H A Dcrc32be-vx.S124 VGFMAG %v2,CONST_R1R2,%v2,%v6
137 VGFMAG %v1,CONST_R3R4,%v1,%v2
147 VL %v2,0,,%r3 /* Load next data chunk */
148 VGFMAG %v1,CONST_R3R4,%v1,%v2 /* Fold next data chunk */
196 VUPLLF %v2,%v1
197 VGFMG %v2,CONST_RU_POLY,%v2
204 VUPLLF %v2,%v2
205 VGFMAG %v2,CONST_CRC_POLY,%v2,%v1
208 VLGVF %r2,%v2,3
/OK3568_Linux_fs/kernel/drivers/char/mwave/
H A Dmwavedd.h84 #define PRINTK_3(f,s,v1,v2) \ argument
86 printk(s,v1,v2); \
89 #define PRINTK_4(f,s,v1,v2,v3) \ argument
91 printk(s,v1,v2,v3); \
94 #define PRINTK_5(f,s,v1,v2,v3,v4) \ argument
96 printk(s,v1,v2,v3,v4); \
99 #define PRINTK_6(f,s,v1,v2,v3,v4,v5) \ argument
101 printk(s,v1,v2,v3,v4,v5); \
104 #define PRINTK_7(f,s,v1,v2,v3,v4,v5,v6) \ argument
106 printk(s,v1,v2,v3,v4,v5,v6); \
[all …]
/OK3568_Linux_fs/kernel/include/pcmcia/
H A Ddevice_id.h29 #define PCMCIA_DEVICE_PROD_ID2(v2, vh2) { \ argument
31 .prod_id = { NULL, (v2), NULL, NULL }, \
39 #define PCMCIA_DEVICE_PROD_ID12(v1, v2, vh1, vh2) { \ argument
42 .prod_id = { (v1), (v2), NULL, NULL }, \
57 #define PCMCIA_DEVICE_PROD_ID123(v1, v2, v3, vh1, vh2, vh3) { \ argument
61 .prod_id = { (v1), (v2), (v3), NULL },\
64 #define PCMCIA_DEVICE_PROD_ID124(v1, v2, v4, vh1, vh2, vh4) { \ argument
68 .prod_id = { (v1), (v2), NULL, (v4) }, \
78 #define PCMCIA_DEVICE_PROD_ID1234(v1, v2, v3, v4, vh1, vh2, vh3, vh4) { \ argument
83 .prod_id = { (v1), (v2), (v3), (v4) }, \
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/math/
H A Dvmx_asm.S9 # Should be safe from C, only touches r4, r5 and v0,v1,v2
17 vmr v2,v1
22 vand v2,v2,v1
27 vand v2,v2,v1
32 vand v2,v2,v1
37 vand v2,v2,v1
42 vand v2,v2,v1
47 vand v2,v2,v1
52 vand v2,v2,v1
57 vand v2,v2,v1
[all …]
/OK3568_Linux_fs/kernel/arch/arm64/lib/
H A Dxor-neon.c19 register uint64x2_t v0, v1, v2, v3; in xor_arm64_neon_2() local
26 v2 = veorq_u64(vld1q_u64(dp1 + 4), vld1q_u64(dp2 + 4)); in xor_arm64_neon_2()
32 vst1q_u64(dp1 + 4, v2); in xor_arm64_neon_2()
47 register uint64x2_t v0, v1, v2, v3; in xor_arm64_neon_3() local
54 v2 = veorq_u64(vld1q_u64(dp1 + 4), vld1q_u64(dp2 + 4)); in xor_arm64_neon_3()
60 v2 = veorq_u64(v2, vld1q_u64(dp3 + 4)); in xor_arm64_neon_3()
66 vst1q_u64(dp1 + 4, v2); in xor_arm64_neon_3()
83 register uint64x2_t v0, v1, v2, v3; in xor_arm64_neon_4() local
90 v2 = veorq_u64(vld1q_u64(dp1 + 4), vld1q_u64(dp2 + 4)); in xor_arm64_neon_4()
96 v2 = veorq_u64(v2, vld1q_u64(dp3 + 4)); in xor_arm64_neon_4()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/rtl8188eu/hal/
H A Drf_cfg.c143 #define READ_NEXT_PAIR(v1, v2, i) \ argument
146 v2 = array[i + 1]; \
192 u32 v2 = array[i + 1]; in rtl88e_phy_config_rf_with_headerfile() local
195 rtl8188e_config_rf_reg(adapt, v1, v2); in rtl88e_phy_config_rf_with_headerfile()
199 READ_NEXT_PAIR(v1, v2, i); in rtl88e_phy_config_rf_with_headerfile()
200 while (v2 != 0xDEAD && v2 != 0xCDEF && in rtl88e_phy_config_rf_with_headerfile()
201 v2 != 0xCDCD && i < array_len - 2) in rtl88e_phy_config_rf_with_headerfile()
202 READ_NEXT_PAIR(v1, v2, i); in rtl88e_phy_config_rf_with_headerfile()
205 READ_NEXT_PAIR(v1, v2, i); in rtl88e_phy_config_rf_with_headerfile()
206 while (v2 != 0xDEAD && v2 != 0xCDEF && in rtl88e_phy_config_rf_with_headerfile()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/display/dc/inc/
H A Dreg_helper.h67 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \ argument
70 FN(reg, f2), v2)
72 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \ argument
75 FN(reg, f2), v2,\
78 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \ argument
81 FN(reg, f2), v2,\
85 #define REG_SET_5(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \ argument
89 FN(reg, f2), v2,\
94 #define REG_SET_6(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \ argument
98 FN(reg, f2), v2,\
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/lib/
H A Dxor_vmx.c56 DEFINE(v2); in __xor_altivec_2()
61 LOAD(v2); in __xor_altivec_2()
62 XOR(v1, v2); in __xor_altivec_2()
66 v2 += 4; in __xor_altivec_2()
74 DEFINE(v2); in __xor_altivec_3()
80 LOAD(v2); in __xor_altivec_3()
82 XOR(v1, v2); in __xor_altivec_3()
87 v2 += 4; in __xor_altivec_3()
97 DEFINE(v2); in __xor_altivec_4()
104 LOAD(v2); in __xor_altivec_4()
[all …]
/OK3568_Linux_fs/kernel/arch/s390/include/asm/
H A Dvx-insn.h97 .ifc \vxr,%v2
200 .macro RXB rxb v1 v2=0 v3=0 v4=0
205 .if \v2 & 0x10
224 .macro MRXB m v1 v2=0 v3=0 v4=0
226 RXB rxb, \v1, \v2, \v3, \v4
239 .macro MRXBOPC m opc v1 v2=0 v3=0 v4=0
240 MRXB \m, \v1, \v2, \v3, \v4
283 .macro VLR v1, v2
285 VX_NUM v2, \v2
286 .word 0xE700 | ((v1&15) << 4) | (v2&15)
[all …]
/OK3568_Linux_fs/kernel/lib/
H A Drandom32.c337 unsigned long v2; member
366 unsigned long v0 = s->v0, v1 = s->v1, v2 = s->v2, v3 = s->v3; in siprand_u32() local
370 PRND_SIPROUND(v0, v1, v2, v3); in siprand_u32()
371 PRND_SIPROUND(v0, v1, v2, v3); in siprand_u32()
373 s->v0 = v0; s->v1 = v1; s->v2 = v2; s->v3 = v3; in siprand_u32()
441 unsigned long v2 = state->v2, v3 = state->v3; in prandom_seed() local
445 PRND_SIPROUND(v0, v1, v2, v3); in prandom_seed()
446 PRND_SIPROUND(v0, v1, v2, v3); in prandom_seed()
448 } while (unlikely(!v0 || !v1 || !v2 || !v3)); in prandom_seed()
452 WRITE_ONCE(state->v2, v2); in prandom_seed()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/hal/phydm/rtl8821c/
H A Dhalhwimg8821c_bb.c1705 u32 v1 = 0, v2 = 0, pre_v1 = 0, pre_v2 = 0; in odm_read_and_config_mp_8821c_agc_tab() local
1712 v2 = array[i + 1]; in odm_read_and_config_mp_8821c_agc_tab()
1727 pre_v2 = v2; in odm_read_and_config_mp_8821c_agc_tab()
1734 a3 = v1; a4 = v2; in odm_read_and_config_mp_8821c_agc_tab()
1749 odm_config_bb_agc_8821c(dm, v1, MASKDWORD, v2); in odm_read_and_config_mp_8821c_agc_tab()
2556 u32 v1 = 0, v2 = 0, pre_v1 = 0, pre_v2 = 0; in odm_read_and_config_mp_8821c_agc_tab_diff() local
2563 v2 = array[i + 1]; in odm_read_and_config_mp_8821c_agc_tab_diff()
2578 pre_v2 = v2; in odm_read_and_config_mp_8821c_agc_tab_diff()
2585 a3 = v1; a4 = v2; in odm_read_and_config_mp_8821c_agc_tab_diff()
2600 odm_config_bb_agc_8821c(dm, v1, MASKDWORD, v2); in odm_read_and_config_mp_8821c_agc_tab_diff()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/hal/phydm/rtl8821c/
H A Dhalhwimg8821c_bb.c1706 u32 v1 = 0, v2 = 0, pre_v1 = 0, pre_v2 = 0; in odm_read_and_config_mp_8821c_agc_tab() local
1713 v2 = array[i + 1]; in odm_read_and_config_mp_8821c_agc_tab()
1728 pre_v2 = v2; in odm_read_and_config_mp_8821c_agc_tab()
1735 a3 = v1; a4 = v2; in odm_read_and_config_mp_8821c_agc_tab()
1750 odm_config_bb_agc_8821c(dm, v1, MASKDWORD, v2); in odm_read_and_config_mp_8821c_agc_tab()
2557 u32 v1 = 0, v2 = 0, pre_v1 = 0, pre_v2 = 0; in odm_read_and_config_mp_8821c_agc_tab_diff() local
2564 v2 = array[i + 1]; in odm_read_and_config_mp_8821c_agc_tab_diff()
2579 pre_v2 = v2; in odm_read_and_config_mp_8821c_agc_tab_diff()
2586 a3 = v1; a4 = v2; in odm_read_and_config_mp_8821c_agc_tab_diff()
2601 odm_config_bb_agc_8821c(dm, v1, MASKDWORD, v2); in odm_read_and_config_mp_8821c_agc_tab_diff()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/hal/phydm/rtl8822b/
H A Dhalhwimg8822b_bb.c10655 u32 v1 = 0, v2 = 0, pre_v1 = 0, pre_v2 = 0; in odm_read_and_config_mp_8822b_agc_tab() local
10662 v2 = array[i + 1]; in odm_read_and_config_mp_8822b_agc_tab()
10677 pre_v2 = v2; in odm_read_and_config_mp_8822b_agc_tab()
10684 a3 = v1; a4 = v2; in odm_read_and_config_mp_8822b_agc_tab()
10699 odm_config_bb_agc_8822b(dm, v1, MASKDWORD, v2); in odm_read_and_config_mp_8822b_agc_tab()
12221 u32 v1 = 0, v2 = 0, pre_v1 = 0, pre_v2 = 0; in odm_read_and_config_mp_8822b_phy_reg() local
12228 v2 = array[i + 1]; in odm_read_and_config_mp_8822b_phy_reg()
12243 pre_v2 = v2; in odm_read_and_config_mp_8822b_phy_reg()
12250 a3 = v1; a4 = v2; in odm_read_and_config_mp_8822b_phy_reg()
12265 odm_config_bb_phy_8822b(dm, v1, MASKDWORD, v2); in odm_read_and_config_mp_8822b_phy_reg()
[all …]
/OK3568_Linux_fs/u-boot/drivers/irq/
H A Dirq-gpio-v2.su

12345678910>>...64