/third_party/boost/libs/python/example/numpy/ |
D | ndarray.cpp | 60 np::dtype dt1 = np::dtype::get_builtin<uint8_t>(); in main() local 62 …np::ndarray mul_data_ex = np::from_data(mul_data,dt1, p::make_tuple(3,4),p::make_tuple(4,1),p::obj… in main() 65 mul_data_ex = np::from_data(mul_data,dt1, shape,stride,p::object()); in main()
|
/third_party/glib/glib/tests/ |
D | gdatetime.c | 197 GDateTime *dt1, *dt2; in test_GDateTime_compare() local 200 dt1 = g_date_time_new_utc (2000, 1, 1, 0, 0, 0); in test_GDateTime_compare() 205 g_assert_cmpint (1, ==, g_date_time_compare (dt1, dt2)); in test_GDateTime_compare() 210 g_assert_cmpint (1, ==, g_date_time_compare (dt1, dt2)); in test_GDateTime_compare() 214 g_assert_cmpint (-1, ==, g_date_time_compare (dt1, dt2)); in test_GDateTime_compare() 218 g_assert_cmpint (0, ==, g_date_time_compare (dt1, dt2)); in test_GDateTime_compare() 220 g_date_time_unref (dt1); in test_GDateTime_compare() 226 GDateTime *dt1, *dt2; in test_GDateTime_equal() local 229 dt1 = g_date_time_new_local (2009, 10, 19, 0, 0, 0); in test_GDateTime_equal() 231 g_assert (g_date_time_equal (dt1, dt2)); in test_GDateTime_equal() [all …]
|
/third_party/boost/boost/numeric/odeint/stepper/detail/ |
D | pid_step_adjuster.hpp | 47 const time_type dt1; member 56 dt1(_dt1), dt2(_dt2), dt3(_dt3), in pid_op() 68 adapted_pow(abs(dt1/dt2), -alpha1/(m_steps + 1))* in operator ()()
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | videotimecode.c | 315 GDateTime *dt1, *dt2; in GST_START_TEST() local 317 dt1 = g_date_time_new_utc (2016, 7, 29, 10, 32, 50); in GST_START_TEST() 320 gst_video_time_code_new (50, 1, dt1, in GST_START_TEST() 339 g_date_time_unref (dt1); in GST_START_TEST() 347 GDateTime *dt1; in GST_START_TEST() local 349 dt1 = g_date_time_new_utc (2016, 7, 29, 10, 32, 50); in GST_START_TEST() 352 gst_video_time_code_new (50, 1, dt1, in GST_START_TEST() 363 g_date_time_unref (dt1); in GST_START_TEST()
|
/third_party/boost/libs/python/doc/html/numpy/_sources/tutorial/ |
D | ndarray.rst.txt | 79 np::dtype dt1 = np::dtype::get_builtin<uint8_t>(); 85 np::ndarray mul_data_ex = np::from_data(mul_data, dt1, 94 mul_data_ex = np::from_data(mul_data, dt1, shape, stride, p::object());
|
/third_party/boost/libs/python/doc/numpy/tutorial/ |
D | ndarray.rst | 79 np::dtype dt1 = np::dtype::get_builtin<uint8_t>(); 85 np::ndarray mul_data_ex = np::from_data(mul_data, dt1, 94 mul_data_ex = np::from_data(mul_data, dt1, shape, stride, p::object());
|
/third_party/glib/glib/ |
D | gdatetime.h | 196 gint g_date_time_compare (gconstpointer dt1, 204 gboolean g_date_time_equal (gconstpointer dt1,
|
D | gdatetime.c | 2042 g_date_time_compare (gconstpointer dt1, in g_date_time_compare() argument 2047 difference = g_date_time_difference ((GDateTime *) dt1, (GDateTime *) dt2); in g_date_time_compare() 2117 g_date_time_equal (gconstpointer dt1, in g_date_time_equal() argument 2120 return g_date_time_difference ((GDateTime *) dt1, (GDateTime *) dt2) == 0; in g_date_time_equal()
|
/third_party/python/Lib/test/ |
D | datetimetester.py | 150 dt1 = datetime(2014, 7, 21, 11, 32, 3, 0, tz1) 152 dt1.utcoffset() 1723 dt1 = self.theclass(*args) 1729 self.assertEqual(dt1.toordinal(), dt2.toordinal()) 1730 self.assertEqual(dt2.newmeth(-7), dt1.year + dt1.month - 7) 2115 dt1 = self.theclass(2002, 3, 1, 9, 0, 0) 2118 self.assertEqual(dt1, dt3) 2126 dt1 = self.theclass(MAXYEAR, 12, 31, 23, 59, 59, 999998) 2128 dt2 = dt1 + us 2129 self.assertEqual(dt2 - dt1, us) [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | gstvideotimecode.c | 573 GDateTime *dt1, *dt2; in gst_video_time_code_compare() local 576 dt1 = gst_video_time_code_to_date_time (tc1); in gst_video_time_code_compare() 579 ret = g_date_time_compare (dt1, dt2); in gst_video_time_code_compare() 581 g_date_time_unref (dt1); in gst_video_time_code_compare()
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstdatetime.c | 654 __gst_date_time_compare (const GstDateTime * dt1, const GstDateTime * dt2) in __gst_date_time_compare() argument 660 if (dt1->fields != dt2->fields) in __gst_date_time_compare() 667 g_date_time_to_unix (dt1->datetime) - g_date_time_to_unix (dt2->datetime); in __gst_date_time_compare()
|
D | gst_private.h | 227 gint __gst_date_time_compare (const GstDateTime * dt1, const GstDateTime * dt2);
|
/third_party/boost/libs/python/doc/numpy/reference/ |
D | ndarray.rst | 378 np::dtype dt1 = np::dtype::get_builtin<uint8_t>(); 380 …np::ndarray mul_data_ex = np::from_data(mul_data,dt1, p::make_tuple(3,4),p::make_tuple(4,1),p::obj… 381 mul_data_ex = np::from_data(mul_data,dt1, shape,stride,p::object());
|
/third_party/boost/libs/python/doc/html/numpy/_sources/reference/ |
D | ndarray.rst.txt | 378 np::dtype dt1 = np::dtype::get_builtin<uint8_t>(); 380 …np::ndarray mul_data_ex = np::from_data(mul_data,dt1, p::make_tuple(3,4),p::make_tuple(4,1),p::obj… 381 mul_data_ex = np::from_data(mul_data,dt1, shape,stride,p::object());
|
/third_party/mindspore/tests/ut/python/dataset/ |
D | test_filterop.py | 219 dt1 = dataset1.filter(predicate=filter_func_zip_after, num_parallel_workers=4) 221 dataz = ds.zip((dt1, dt2))
|
/third_party/boost/libs/python/doc/html/numpy/ |
D | searchindex.js | 1 …:[4,5,7],dimension:[5,10,11],directli:10,don:10,done:10,doubl:[1,2,6,7,12],dt1:[5,10],dtpye:7,dtyp… property
|
/third_party/python/Lib/test/test_zoneinfo/ |
D | test_zoneinfo.py | 561 dt1 = datetime(1883, 6, 10, 1, tzinfo=zi) 563 for dt, offset in [(dt0, LMT), (dt1, STD)]:
|
/third_party/icu/icu4c/source/test/intltest/ |
D | dtfmttst.cpp | 3672 UDate dt1 = date(2008-1900, UCAL_JUNE, 10, 12, 00); in Test6338() local 3674 str1 = fmt1.format(dt1, str1); in Test6338() 3988 UDate dt1 = fmt1->parse(in, status); in TestISOEra() local 3993 out = fmt1->format(dt1, out); in TestISOEra()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | DateFormatTest.java | 3994 Date dt1; in TestISOEra() local 3997 dt1 = fmt1.parse(in); in TestISOEra() 4006 out = fmt1.format(dt1); in TestISOEra()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | DateFormatTest.java | 4078 Date dt1; in TestISOEra() local 4081 dt1 = fmt1.parse(in); in TestISOEra() 4090 out = fmt1.format(dt1); in TestISOEra()
|
/third_party/python/Doc/library/ |
D | datetime.rst | 1628 >>> dt1 = datetime(1900, 11, 21, 16, 30, tzinfo=tz1) 1629 >>> print(dt1.utcoffset())
|