Home
last modified time | relevance | path

Searched refs:ms2 (Results 1 - 12 of 12) sorted by relevance

/third_party/ffmpeg/libavformat/
H A Dstldec.c57 int hh2, mm2, ss2, ms2; in get_pts() local
62 &hh2, &mm2, &ss2, &ms2, &len) >= 8 && len > 0) { in get_pts()
64 int64_t end = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2; in get_pts()
H A Dassenc.c163 int hh2, mm2, ss2, ms2; in write_packet() local
185 ss2 = (int)(end / 100) % 60; ms2 = (int)(end % 100); in write_packet()
187 if (hh2 > 9) hh2 = 9, mm2 = 59, ss2 = 59, ms2 = 99; in write_packet()
191 layer, hh1, mm1, ss1, ms1, hh2, mm2, ss2, ms2, p); in write_packet()
H A Dassdec.c58 int hh2, mm2, ss2, ms2; in read_dialogue() local
62 &hh2, &mm2, &ss2, &ms2, &pos) >= 8 && pos > 0) { in read_dialogue()
70 end = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2; in read_dialogue()
H A Dsubviewerdec.c66 int hh2, mm2, ss2, ms2; in read_ts() local
71 &hh1, &mm1, &ss1, &ms1p1, &ms1, &ms1p2, &hh2, &mm2, &ss2, &ms2p1, &ms2, &ms2p2) == 8) { in read_ts()
77 end = (hh2*3600LL + mm2*60LL + ss2) * 1000LL + ms2 * multiplier2; in read_ts()
H A Dsrtdec.c75 int hh2, mm2, ss2, ms2; in get_event_info() local
83 &hh2, &mm2, &ss2, &ms2, in get_event_info()
86 const int64_t end = (hh2*3600LL + mm2*60LL + ss2) * 1000LL + ms2; in get_event_info()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DIBMCalendarTest.java750 Date ms2 = cal.getTime(); in TestJB1684()
752 if (!ms2.equals(ms)) { in TestJB1684()
754 "\n GregorianCalendar.WOM gave " + ms2); in TestJB1684()
760 ms2 = null; in TestJB1684()
762 ms2 = sdf.parse(test.data); in TestJB1684()
768 if (!ms2.equals(ms)) { in TestJB1684()
770 "\n SimpleDateFormat.parse gave " + ms2); in TestJB1684()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_context.c456 static const uint8_t ms2[2][2] = { in nv50_context_get_sample_position() local
480 case 2: ptr = ms2; break; in nv50_context_get_sample_position()
/third_party/ffmpeg/libavcodec/x86/
H A Dh264_deblock_10bit.asm160 %define ms2 [rsp+mmsize*2]
189 LUMA_DEBLOCK_ONE m2, m3, ms2
197 psubw m6, ms2
215 %define ms2 [rsp+mmsize*2]
277 LUMA_DEBLOCK_ONE m2, m3, ms2
285 psubw m6, ms2
/third_party/icu/icu4c/source/test/intltest/
H A Ddtfmrgts.cpp1354 UDate ms2 = cal->getTime(status); in Test1684() local
1356 if (ms2 != ms) { in Test1684()
1358 "\n GregorianUCAL_WOM gave " + ms2); in Test1684()
1364 ms2 = sdf->parse(test.data, status); in Test1684()
1369 if (ms2!=ms) { in Test1684()
1371 "\n SimpleDateFormat.parse gave " + ms2); in Test1684()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DIBMCalendarTest.java750 Date ms2 = cal.getTime(); in TestJB1684()
752 if (!ms2.equals(ms)) { in TestJB1684()
754 "\n GregorianCalendar.WOM gave " + ms2); in TestJB1684()
760 ms2 = null; in TestJB1684()
762 ms2 = sdf.parse(test.data); in TestJB1684()
768 if (!ms2.equals(ms)) { in TestJB1684()
770 "\n SimpleDateFormat.parse gave " + ms2); in TestJB1684()
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_context.c596 static const uint8_t ms2[2][2] = { in nvc0_get_sample_locations() local
620 case 2: ptr = ms2; break; in nvc0_get_sample_locations()
/third_party/node/deps/v8/src/objects/
H A Djs-temporal-objects.cc178 int32_t ms2, int32_t mus2, int32_t ns2, Handle<JSReceiver> calendar,
260 int32_t s2, int32_t ms2, int32_t mus2, int32_t ns2);
4103 int32_t ms2, int32_t mus2, int32_t ns2, Handle<JSReceiver> calendar, in DifferenceISODateTime()
4110 // min2, s2, ms2, mus2, and ns2 are integers. in DifferenceISODateTime()
4120 // min2, s2, ms2, mus2, ns2). in DifferenceISODateTime()
4122 isolate, h1, min1, s1, ms1, mus1, ns1, h2, min2, s2, ms2, mus2, ns2); in DifferenceISODateTime()
4582 int32_t ms2, int32_t mus2, int32_t ns2) { in DifferenceTime()
4585 // 1. Assert: h1, min1, s1, ms1, mus1, ns1, h2, min2, s2, ms2, mus2, and ns2 in DifferenceTime()
4594 // 5. Let milliseconds be ms2 − ms1. in DifferenceTime()
4595 dur.milliseconds = ms2 in DifferenceTime()
4099 DifferenceISODateTime( Isolate* isolate, int32_t y1, int32_t mon1, int32_t d1, int32_t h1, int32_t min1, int32_t s1, int32_t ms1, int32_t mus1, int32_t ns1, int32_t y2, int32_t mon2, int32_t d2, int32_t h2, int32_t min2, int32_t s2, int32_t ms2, int32_t mus2, int32_t ns2, Handle<JSReceiver> calendar, Unit largest_unit, Handle<Object> options_obj, const char* method_name) DifferenceISODateTime() argument
4579 DifferenceTime(Isolate* isolate, int32_t h1, int32_t min1, int32_t s1, int32_t ms1, int32_t mus1, int32_t ns1, int32_t h2, int32_t min2, int32_t s2, int32_t ms2, int32_t mus2, int32_t ns2) DifferenceTime() argument
[all...]

Completed in 30 milliseconds