Home
last modified time | relevance | path

Searched refs:m_2 (Results 1 – 25 of 905) sorted by relevance

12345678910>>...37

/dports/misc/libmodulemd/modulemd-2.13.0/modulemd/tests/
H A Dtest-modulemd-component-module.c115 g_autoptr (ModulemdComponentModule) m_2 = NULL; in component_module_test_equals()
125 m_2 = modulemd_component_module_new ("testmodule"); in component_module_test_equals()
129 modulemd_component_module_set_ref (m_2, "someref"); in component_module_test_equals()
135 g_clear_object (&m_2); in component_module_test_equals()
155 g_clear_object (&m_2); in component_module_test_equals()
169 modulemd_component_module_set_ref (m_2, "refA"); in component_module_test_equals()
175 g_clear_object (&m_2); in component_module_test_equals()
193 g_clear_object (&m_2); in component_module_test_equals()
211 g_clear_object (&m_2); in component_module_test_equals()
224 modulemd_component_module_set_ref (m_2, "refAA"); in component_module_test_equals()
[all …]
/dports/math/py-sympy/sympy-1.9/sympy/physics/tests/
H A Dtest_clebsch_gordan.py21 m_2 = S.Half
118 m_2 = 1
127 m_2 = 0
136 m_2 = 1
144 m_2 = 0
152 m_2 = 1
196 m_2 = 1
204 m_2 = 1
213 m_2 = 1
222 m_2 = 0
[all …]
/dports/net/arataga/oess-2.2.3/dev/test/bench/stdsn/
H A Dmain.cpp58 , m_2( 1 ) in no_ext_no_opt_nested_t()
78 : m_2( 2 ) in no_ext_no_opt_outer_t()
103 , m_2( 1 ) in no_ext_with_opt_nested_t()
123 : m_2( 2 ) in no_ext_with_opt_outer_t()
148 , m_2( 1 ) in with_ext_with_opt_nested_t()
168 : m_2( 2 ) in with_ext_with_opt_outer_t()
189 , m_2( 0 ) in type_with_name_t()
212 delete m_2; in ~type_with_name_holder_t()
229 , m_2( 0 ) in type_with_oid_t()
252 delete m_2; in ~type_with_oid_holder_t()
[all …]
H A Dmain.ddl3 {attr m_2 {of oess_2::short_t}}
10 {attr m_2 {of oess_2::uint_t}}
17 {attr m_2 {of oess_2::short_t}
19 {present_if {c++ 2 != m_2}}
32 {attr m_2 {of oess_2::uint_t}
34 {present_if {c++ 2 != m_2}}
53 {attr m_2 {of oess_2::short_t}
55 {present_if {c++ 2 != m_2}}
72 {attr m_2 {of oess_2::uint_t}
74 {present_if {c++ 2 != m_2}}
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/calib3d/src/
H A Dundistort.simd.hpp130 v_float64 m_0, m_1, m_2, m_3; in operator ()() local
148 m_2 = vx_setall_f64(k2); in operator ()()
153 m_2 = vx_setall_f64(k5); in operator ()()
162 m_2 = x_0 * y_0 * m_3; in operator ()()
174 xd_0 = v_muladd(m_0, m_2, xd_0); in operator ()()
175 yd_0 = v_muladd(m_1, m_2, yd_0); in operator ()()
181 m_2 = vx_setall_f64(s2); in operator ()()
185 m_2 = vx_setall_f64(s4); in operator ()()
192 m_2 = vx_setall_f64(matTilt.val[2]); in operator ()()
197 m_2 = vx_setall_f64(matTilt.val[5]); in operator ()()
[all …]
/dports/databases/db18/db-18.1.40/test/tcl/
H A Drepmgr113.tcl108 while {! [gets $m_2]} {
134 while {! [gets $m_2]} {
142 set m_1 $m_2
191 while {! [gets $m_2]} {
243 set m_1 $m_2
380 close $m_2
724 $m_2 close
795 while {! [gets $m_2]} {
882 puts $m_2 "open_db test.db"
885 set sentinel [gets $m_2]
[all …]
/dports/math/py-sympy/sympy-1.9/sympy/physics/
H A Dwigner.py91 def wigner_3j(j_1, j_2, j_3, m_1, m_2, m_3): argument
180 if int(m_1 * 2) != m_1 * 2 or int(m_2 * 2) != m_2 * 2 or \
183 if m_1 + m_2 + m_3 != 0:
208 _Factlist[int(j_2 - m_2)] *
209 _Factlist[int(j_2 + m_2)] *
223 _Factlist[int(ii + j_3 - j_1 - m_2)] * \
224 _Factlist[int(j_2 + m_2 - ii)] * \
234 def clebsch_gordan(j_1, j_2, j_3, m_1, m_2, m_3): argument
285 wigner_3j(j_1, j_2, j_3, m_1, m_2, -m_3)
693 if int(m_1) != m_1 or int(m_2) != m_2 or int(m_3) != m_3:
[all …]
/dports/lang/mono/mono-5.10.1.57/mono/tests/
H A Dbug-349190.2.cs26 MethodBuilder m_2 = tb2.DefineMethod ("m_2", MethodAttributes.Public | MethodAttributes.Static); in TestTwoAssemblies()
27 Type[] gparams_m_2 = m_2.DefineGenericParameters ("T"); in TestTwoAssemblies()
28 m_2.SetReturnType (gparams_m_2[0]); in TestTwoAssemblies()
29 m_2.SetParameters (gparams_m_2[0]); in TestTwoAssemblies()
30 ILGenerator il = m_2.GetILGenerator (); in TestTwoAssemblies()
46 il.Emit (OpCodes.Ldftn, m_2); in TestTwoAssemblies()
87 Type[] gparams_m_2 = m_2.DefineGenericParameters ("T"); in TestOneAssembly()
88 m_2.SetReturnType (gparams_m_2[0]); in TestOneAssembly()
89 m_2.SetParameters (gparams_m_2[0]); in TestOneAssembly()
98 il.Emit (OpCodes.Ldftn, m_2); in TestOneAssembly()
[all …]
/dports/math/cgal/CGAL-5.3/include/CGAL/Envelope_3/
H A DEnvelope_overlay_functor.h69 : m_1(md1), m_2(md2), m_result(result) in Envelope_overlay_functor()
81 res_f->set_aux_source(1, m_2.non_const_handle(f2)); in create_face()
89 res_v->set_aux_source(1, m_2.non_const_handle(h2)); in create_vertex()
99 res_v->set_aux_source(1, m_2.non_const_handle(v2)); in create_vertex()
116 res_v->set_aux_source(1, m_2.non_const_handle(h2)); in create_vertex()
126 res_v->set_aux_source(1, m_2.non_const_handle(v2)); in create_vertex()
136 res_v->set_aux_source(1, m_2.non_const_handle(v2)); in create_vertex()
155 res_v->set_aux_source(1, m_2.non_const_handle(f2)); in create_vertex()
175 res_h->set_aux_source(1, m_2.non_const_handle(h2)); in create_edge()
211 res_h->set_aux_source(1, m_2.non_const_handle(f2)); in create_edge()
[all …]
/dports/cad/opencascade/opencascade-7.6.0/tests/boolean/bsection/
H A DP44 # m_2 : Bloc
6 bsection s c1 m_2
8 bsection s2 m_4 m_2
13 checkview -display result -2d -otherwise { c1 m_2 m_4 m_2 } -l -path ${imagedir}/${test_image}.png
/dports/security/vault/vault-1.8.2/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/net/evans/evans-0.9.1/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/www/bugzilla2atom/bugzilla2atom-56126912bf314a80744827758d582e5e60e7178c/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/devel/liteide/liteide-x37.4/liteidex/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/net-im/dendrite/dendrite-0.5.1/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/golang.org/x/tools/tools-5eefd052ad72/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/security/xray-core/Xray-core-1.5.0/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/security/vuls/vuls-0.13.7/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/golang.org/x/tools/cmd/stringer/
H A Dutil_test.go29 m_2 = ^uint64(0) - 1 // -2 when signed. var
47 {u{m1, m0, m_1, m2, m_2}, uu{u{m0, m1, m2}, u{m_2, m_1}}, false},
49 {u{m1, m0, m_1, m2, m_2}, uu{u{m_2, m_1, m0, m1, m2}}, true},

12345678910>>...37