Home
last modified time | relevance | path

Searched refs:ct2 (Results 1 – 15 of 15) sorted by relevance

/third_party/icu/icu4c/source/test/intltest/
Dcpdtrtst.cpp126 CompoundTransliterator *ct2=new CompoundTransliterator("Greek-Latin", parseError, status); in TestCloneEqual() local
130 delete ct2; in TestCloneEqual()
138 CompoundTransliterator *copyct2=new CompoundTransliterator(*ct2); in TestCloneEqual()
146 if(copyct1->getID() != ct1->getID() || copyct2->getID() != ct2->getID() || in TestCloneEqual()
147 copyct1->getCount() != ct1->getCount() || copyct2->getCount() != ct2->getCount() || in TestCloneEqual()
148 copyct2->getID() == ct1->getID() || copyct1->getID() == ct2->getID() || in TestCloneEqual()
149 copyct2->getCount() == ct1->getCount() || copyct1->getCount() == ct2->getCount() ){ in TestCloneEqual()
153 if(equalct1.getID() != ct1->getID() || equalct2.getID() != ct2->getID() || in TestCloneEqual()
155 equalct1.getCount() != ct1->getCount() || equalct2.getCount() != ct2->getCount() || in TestCloneEqual()
156 copyct2->getID() == ct1->getID() || copyct1->getID() == ct2->getID() || in TestCloneEqual()
[all …]
/third_party/boost/boost/math/special_functions/detail/
Dhypergeometric_pade.hpp46 const T ct2 = ct1 * ct1; in hypergeometric_1F1_pade() local
47 const T g1 = one + ((cp1 / (ct2 + ct1 + ct1)) * z); in hypergeometric_1F1_pade()
48 const T g2 = ((xi1 / (ct2 - one)) * ((xi1 + cp1) / ct2)) * zz; in hypergeometric_1F1_pade()
102 const T ct2 = ct1 + xi1; in hypergeometric_2F1_pade() local
103 const T ct3 = ct2 * ct2; in hypergeometric_2F1_pade()
106 const T g1 = one + (((((xi1 + xi1) * ct1) + b1c1) / (ct3 + ct2 + ct2)) * z); in hypergeometric_2F1_pade()
Dhypergeometric_rational.hpp31 T ct2 = z2 / (one + cp); in hypergeometric_1F1_rational() local
41 T b3 = one + ((two + b2) * (((two + ap) / three) * ct2)); in hypergeometric_1F1_rational()
42 T a3 = b3 - ((one + ct2) * ct1); in hypergeometric_1F1_rational()
54 ct2 = (z2 / ct1) / (cp + xn1); in hypergeometric_1F1_rational()
55 const T g1 = one + (ct2 * (xn2 - ap)); in hypergeometric_1F1_rational()
56 ct2 *= ((ap + xn1) / (cp + xn2)); in hypergeometric_1F1_rational()
57 const T g2 = ct2 * ((cp - xn1) + (((ap + xn0) / (ct1 + two)) * z2)); in hypergeometric_1F1_rational()
58 … const T g3 = ((ct2 * z2) * (((z2 / ct1) / (ct1 - two)) * ((ap + xn2)) / (cp + xn3))) * (ap - xn2); in hypergeometric_1F1_rational()
/third_party/boost/boost/geometry/srs/projections/proj/
Dvandg4.hpp71 T x1, t, bt, ct, ft, bt2, ct2, dt, dt2; in fwd() local
84 ct2 = ct * ct; in fwd()
92 ft = x1 * (bt2 + ct2 * dt2 - 1.) + (1.-bt2) * ( in fwd()
93 bt2 * (t * t + 4. * ct2) + in fwd()
94 ct2 * (12. * bt * ct + 4. * ct2) ); in fwd()
95 x1 = (dt*(x1 + ct2 - 1.) + 2.*sqrt(ft)) / in fwd()
/third_party/ffmpeg/libavfilter/
Dhermite.h29 double ct0, ct1, ct2, ct3; in hermite_interpolation() local
39 ct2 = -3 * p0 - 2 * m0 + 3 * p1 - m1; in hermite_interpolation()
42 return ct3 * t3 + ct2 * t2 + ct1 * t + ct0; in hermite_interpolation()
/third_party/boost/boost/geometry/strategies/transform/
Dmatrix_transformers.hpp199 typedef typename geometry::coordinate_type<P2>::type ct2; in apply() typedef
200 …set<0>(p2, boost::numeric_cast<ct2>(c1 * qvm::A<0,0>(this->m_matrix) + c2 * qvm::A<0,1>(this->m_ma… in apply()
201 …set<1>(p2, boost::numeric_cast<ct2>(c1 * qvm::A<1,0>(this->m_matrix) + c2 * qvm::A<1,1>(this->m_ma… in apply()
242 typedef typename geometry::coordinate_type<P2>::type ct2; in apply() typedef
244 set<0>(p2, boost::numeric_cast<ct2>( in apply()
246 set<1>(p2, boost::numeric_cast<ct2>( in apply()
291 typedef typename geometry::coordinate_type<P2>::type ct2; in apply() typedef
293 set<0>(p2, boost::numeric_cast<ct2>( in apply()
295 set<1>(p2, boost::numeric_cast<ct2>( in apply()
297 set<2>(p2, boost::numeric_cast<ct2>( in apply()
/third_party/gstreamer/gstreamer/libs/gst/controller/
Dgsttimedvaluecontrolsource.c144 GstClockTime ct2 = ((GstControlPoint *) p2)->timestamp; in gst_control_point_compare() local
146 return ((ct1 < ct2) ? -1 : ((ct1 == ct2) ? 0 : 1)); in gst_control_point_compare()
162 GstClockTime ct2 = *(GstClockTime *) p2; in gst_control_point_find() local
164 return ((ct1 < ct2) ? -1 : ((ct1 == ct2) ? 0 : 1)); in gst_control_point_find()
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstevent.c179 GstClockTime ct1 = G_GUINT64_CONSTANT (20), ct2; in GST_START_TEST() local
188 gst_event_parse_qos (event, &t2, &p2, &ctd2, &ct2); in GST_START_TEST()
191 fail_unless (ct1 == ct2); in GST_START_TEST()
192 gst_event_parse_qos (event, &t2, &p2, &ctd2, &ct2); in GST_START_TEST()
196 fail_unless (ct1 == ct2); in GST_START_TEST()
201 gst_event_parse_qos (event, &t2, &p2, &ctd2, &ct2); in GST_START_TEST()
206 gst_event_parse_qos (event, &t2, &p2, &ctd2, &ct2); in GST_START_TEST()
210 fail_unless (ct1 == ct2); in GST_START_TEST()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
DCompoundTransliteratorTest.java179 Transliterator ct2=null; in TestTransliterate() local
182 ct2=Transliterator.getInstance(Data[i+0]); in TestTransliterate()
187 expect(ct2, Data[i+1], Data[i+2]); in TestTransliterate()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DCompoundTransliteratorTest.java176 Transliterator ct2=null; in TestTransliterate() local
179 ct2=Transliterator.getInstance(Data[i+0]); in TestTransliterate()
184 expect(ct2, Data[i+1], Data[i+2]); in TestTransliterate()
/third_party/skia/src/effects/imagefilters/
DSkDisplacementMapImageFilter.cpp501 auto [colorView, ct2, at2] = d->randomView(); in TestCreate()
/third_party/libxml2/
Drelaxng.c6224 xmlRelaxNGContentType ct2) in xmlRelaxNGGroupContentType() argument
6227 (ct2 == XML_RELAXNG_CONTENT_ERROR)) in xmlRelaxNGGroupContentType()
6230 return (ct2); in xmlRelaxNGGroupContentType()
6231 if (ct2 == XML_RELAXNG_CONTENT_EMPTY) in xmlRelaxNGGroupContentType()
6234 (ct2 == XML_RELAXNG_CONTENT_COMPLEX)) in xmlRelaxNGGroupContentType()
6250 xmlRelaxNGContentType ct2) in xmlRelaxNGMaxContentType() argument
6253 (ct2 == XML_RELAXNG_CONTENT_ERROR)) in xmlRelaxNGMaxContentType()
6256 (ct2 == XML_RELAXNG_CONTENT_SIMPLE)) in xmlRelaxNGMaxContentType()
6259 (ct2 == XML_RELAXNG_CONTENT_COMPLEX)) in xmlRelaxNGMaxContentType()
/third_party/gettext/gnulib-local/lib/libxml/
Drelaxng.c6248 xmlRelaxNGContentType ct2) in xmlRelaxNGGroupContentType() argument
6251 (ct2 == XML_RELAXNG_CONTENT_ERROR)) in xmlRelaxNGGroupContentType()
6254 return (ct2); in xmlRelaxNGGroupContentType()
6255 if (ct2 == XML_RELAXNG_CONTENT_EMPTY) in xmlRelaxNGGroupContentType()
6258 (ct2 == XML_RELAXNG_CONTENT_COMPLEX)) in xmlRelaxNGGroupContentType()
6274 xmlRelaxNGContentType ct2) in xmlRelaxNGMaxContentType() argument
6277 (ct2 == XML_RELAXNG_CONTENT_ERROR)) in xmlRelaxNGMaxContentType()
6280 (ct2 == XML_RELAXNG_CONTENT_SIMPLE)) in xmlRelaxNGMaxContentType()
6283 (ct2 == XML_RELAXNG_CONTENT_COMPLEX)) in xmlRelaxNGMaxContentType()
/third_party/boost/boost/polygon/detail/
Dpolygon_45_formation.hpp499 template <typename ct2>
500 …inline Vertex45CompactT(const typename boolean_op_45<Unit>::template Vertex45T<ct2>& vertex) : pt(… in Vertex45CompactT()
/third_party/python/Lib/test/
Dtest_typing.py498 ct2 = Callable[[str, float], int]
499 self.assertEqual(repr(ct2), f'{fullname}[[str, float], int]')