Home
last modified time | relevance | path

Searched refs:newt (Results 1 – 16 of 16) sorted by relevance

/third_party/tzdata/
Dzdump.c619 time_t newt = cutlotime; in main() local
620 if (my_localtime_rz(tz, &newt, &newtm) != NULL) in main()
621 showextrema(tz, argv[i], t, NULL, newt); in main()
636 time_t newt = ((t < absolute_max_time - SECSPERDAY / 2 in main() local
640 struct tm *newtmp = localtime_rz(tz, &newt, &newtm); in main()
643 || (ab && (delta(&newtm, &tm) != newt - t in main()
646 newt = hunt(tz, t, newt, false); in main()
647 newtmp = localtime_rz(tz, &newt, &newtm); in main()
650 showtrans("%Y-%m-%d\t%L\t%Q", newtmp, newt, in main()
653 show(tz, argv[i], newt - 1, true); in main()
[all …]
Dlocaltime.c1541 time_t newt; in localsub() local
1556 newt = t + seconds + SECSPERREPEAT; in localsub()
1558 newt = t - seconds - SECSPERREPEAT; in localsub()
1560 if (newt < sp->ats[0] || in localsub()
1561 newt > sp->ats[sp->timecnt - 1]) in localsub()
1563 result = localsub(sp, &newt, setname, tmp); in localsub()
1999 time_t newt; in time2sub() local
2161 newt = (t + sp->ttis[j].tt_utoff in time2sub()
2163 if (! funcp(sp, &newt, offset, &mytm)) in time2sub()
2172 t = newt; in time2sub()
[all …]
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
Dzdump.c348 time_t newt; in main() local
601 newt = (t < absolute_max_time - SECSPERDAY / 2 in main()
604 if (cuthitime <= newt) in main()
606 newtmp = localtime(&newt); in main()
614 (delta(&newtm, &tm) != (newt - t) || in main()
616 newt = huntICU(argv[i], t, newt, fp); in main()
617 newtmp = localtime(&newt); in main()
628 (delta(&newtm, &tm) != (newt - t) || in main()
631 newt = hunt(argv[i], t, newt); in main()
632 newtmp = localtime(&newt); in main()
[all …]
Dicuzdump.cpp143 UDate newt = t + SEARCH_INCREMENT; in dump() local
145 timezone->getOffset(newt, false, newRawOffset, newDstOffset, status); in dump()
153 UDate hit = newt; in dump()
188 t = newt; in dump()
Dlocaltime.c1270 time_t newt = t; in localsub() local
1281 newt += seconds; in localsub()
1282 else newt -= seconds; in localsub()
1283 if (newt < sp->ats[0] || in localsub()
1284 newt > sp->ats[sp->timecnt - 1]) in localsub()
1286 result = localsub(&newt, offset, tmp); in localsub()
1681 time_t newt; in time2sub() local
1815 newt = t + sp->ttis[j].tt_gmtoff - in time2sub()
1817 if ((*funcp)(&newt, offset, &mytm) == NULL) in time2sub()
1826 t = newt; in time2sub()
[all …]
/third_party/icu/icu4c/source/tools/tzcode/
Dzdump.c342 time_t newt; in main() local
595 newt = (t < absolute_max_time - SECSPERDAY / 2 in main()
598 if (cuthitime <= newt) in main()
600 newtmp = localtime(&newt); in main()
608 (delta(&newtm, &tm) != (newt - t) || in main()
610 newt = huntICU(argv[i], t, newt, fp); in main()
611 newtmp = localtime(&newt); in main()
622 (delta(&newtm, &tm) != (newt - t) || in main()
625 newt = hunt(argv[i], t, newt); in main()
626 newtmp = localtime(&newt); in main()
[all …]
Dicuzdump.cpp143 UDate newt = t + SEARCH_INCREMENT; in dump() local
145 timezone->getOffset(newt, false, newRawOffset, newDstOffset, status); in dump()
153 UDate hit = newt; in dump()
188 t = newt; in dump()
Dlocaltime.c1272 time_t newt = t; in localsub() local
1283 newt += seconds; in localsub()
1284 else newt -= seconds; in localsub()
1285 if (newt < sp->ats[0] || in localsub()
1286 newt > sp->ats[sp->timecnt - 1]) in localsub()
1288 result = localsub(&newt, offset, tmp); in localsub()
1683 time_t newt; in time2sub() local
1817 newt = t + sp->ttis[j].tt_gmtoff - in time2sub()
1819 if ((*funcp)(&newt, offset, &mytm) == NULL) in time2sub()
1828 t = newt; in time2sub()
[all …]
/third_party/gstreamer/gstreamer/gst/
Dgstelementfactory.c257 GstStaticPadTemplate *newt; in gst_element_register() local
260 newt = g_slice_new (GstStaticPadTemplate); in gst_element_register()
261 newt->name_template = g_intern_string (templ->name_template); in gst_element_register()
262 newt->direction = templ->direction; in gst_element_register()
263 newt->presence = templ->presence; in gst_element_register()
264 newt->static_caps.caps = NULL; in gst_element_register()
265 newt->static_caps.string = g_intern_string (caps_string); in gst_element_register()
267 g_list_append (factory->staticpadtemplates, newt); in gst_element_register()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/
DICUZDump.java98 long newt = t + SEARCH_INCREMENT; in dump() local
99 int newOffset = tz.getOffset(newt); in dump()
100 boolean newInDst = tz.inDaylightTime(newt); in dump()
104 long hit = newt; in dump()
126 t = newt; in dump()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dedit.c41 static struct termios prevt, newt; variable
1130 newt = prevt; in edit_init()
1131 newt.c_lflag &= ~(ICANON | ECHO); in edit_init()
1132 tcsetattr(STDIN_FILENO, TCSANOW, &newt); in edit_init()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dedit.c41 static struct termios prevt, newt; variable
1130 newt = prevt; in edit_init()
1131 newt.c_lflag &= ~(ICANON | ECHO); in edit_init()
1132 tcsetattr(STDIN_FILENO, TCSANOW, &newt); in edit_init()
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
DREADME58 https://pobox.com/~newt/greg_contact.html
/third_party/python/Lib/test/
Dtest_collections.py585 newt = t._replace(itemgetter=10, property=20, self=30, cls=40, tuple=50)
586 self.assertEqual(newt, (10,20,30,40,50))
636 newt = t._replace(**dict(zip(T._fields, newvalues)))
637 self.assertEqual(newt, newvalues)
Dtest_set.py273 newt = elem
274 self.assertNotEqual(id(t), id(newt))
275 self.assertEqual(t.value + 1, newt.value)
/third_party/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt7677 金裡奇 < \(newt\)\-gingrich;
24200 金裡奇 > \(newt\)\-gingrich;