/third_party/skia/tools/android/ |
H A D | measure_fps.py | 32 starttime = time.time() 39 fps = (endframe - startframe) / (endtime - starttime) 43 starttime = endtime
|
/third_party/ltp/testcases/realtime/perf/latency/ |
H A D | pthread_cond_latency.c | 117 double starttime; in test_signal() local 156 starttime = d_gettimeofday(); in test_signal() 162 starttime = d_gettimeofday(); in test_signal() 180 (int)((endtime - starttime) * 1000000.)); in test_signal()
|
H A D | pthread_cond_many.c | 152 double starttime; in wake_child() local 162 starttime = d_gettimeofday(); in wake_child() 168 starttime = d_gettimeofday(); in wake_child() 182 latency = (unsigned long)((endtime - starttime) * 1000000.); in wake_child()
|
/third_party/rust/crates/nix/test/ |
H A D | test_timer.rs | 78 let starttime = Instant::now(); in alarm_fires() 84 if starttime.elapsed() > Duration::from_secs(3) { in alarm_fires()
|
H A D | test_unistd.rs | 838 let starttime = Instant::now(); in test_alarm() 844 if starttime.elapsed() > Duration::from_secs(3) { in test_alarm()
|
/third_party/icu/icu4c/source/tools/tzcode/ |
H A D | zic.c | 142 static void addtt(zic_t starttime, int type); 2224 register zic_t starttime, untiltime; in outzone() local 2253 INITIALIZE(starttime); in outzone() 2466 addtt(starttime, type); in outzone() 2538 if (usestart && ktime == starttime) in outzone() 2541 if (ktime < starttime) { in outzone() 2607 else addtt(starttime, in outzone() 2623 ** Now we may get to set starttime for the next zone line. in outzone() 2628 starttime = zp->z_untiltime; in outzone() 2630 starttime in outzone() 2680 addtt(const zic_t starttime, int type) addtt() argument [all...] |
H A D | localtime.c | 1021 starttime = transtime(year, &start, stdoffset), in tzparse() local 1026 int reversed = endtime < starttime; in tzparse() 1028 int_fast32_t swap = starttime; in tzparse() 1029 starttime = endtime; in tzparse() 1033 || (starttime < endtime in tzparse() 1034 && (endtime - starttime in tzparse() 1042 (&sp->ats[timecnt], starttime)) in tzparse()
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
H A D | zic.c | 141 static void addtt(zic_t starttime, int type); 2223 register zic_t starttime, untiltime; in outzone() local 2252 INITIALIZE(starttime); in outzone() 2465 addtt(starttime, type); in outzone() 2537 if (usestart && ktime == starttime) in outzone() 2540 if (ktime < starttime) { in outzone() 2606 else addtt(starttime, in outzone() 2622 ** Now we may get to set starttime for the next zone line. in outzone() 2627 starttime = zp->z_untiltime; in outzone() 2629 starttime in outzone() 2679 addtt(const zic_t starttime, int type) addtt() argument [all...] |
H A D | localtime.c | 1019 starttime = transtime(year, &start, stdoffset), in tzparse() local 1024 int reversed = endtime < starttime; in tzparse() 1026 int_fast32_t swap = starttime; in tzparse() 1027 starttime = endtime; in tzparse() 1031 || (starttime < endtime in tzparse() 1032 && (endtime - starttime in tzparse() 1040 (&sp->ats[timecnt], starttime)) in tzparse()
|
/third_party/ltp/tools/genload/ |
H A D | stress.c | 91 long starttime, stoptime, runtime; in main() local 111 if ((starttime = time(NULL)) == -1) { in main() 319 runtime = stoptime - starttime; in main()
|
H A D | genload.c | 91 long starttime, stoptime, runtime; in main() local 111 if ((starttime = time(NULL)) == -1) { in main() 319 runtime = stoptime - starttime; in main()
|
/third_party/tzdata/ |
H A D | zic.c | 174 static void addtt(zic_t starttime, int type); 3116 register zic_t starttime, untiltime; in outzone() local 3142 INITIALIZE(starttime); in outzone() 3237 addtt(starttime, type); in outzone() 3238 if (useuntil && nonTZlimtime < starttime) { in outzone() 3239 nonTZlimtime = starttime; in outzone() 3340 if (usestart && ktime == starttime) in outzone() 3343 if (ktime < starttime) { in outzone() 3396 addtt(starttime, type); in outzone() 3400 ** Now we may get to set starttime fo in outzone() 3475 addtt(zic_t starttime, int type) addtt() argument [all...] |
H A D | localtime.c | 1212 starttime = transtime(year, &start, stdoffset), in tzparse() local 1217 bool reversed = endtime < starttime; in tzparse() 1219 int_fast32_t swap = starttime; in tzparse() 1220 starttime = endtime; in tzparse() 1224 || (starttime < endtime in tzparse() 1225 && endtime - starttime < yearsecs)) { in tzparse() 1231 janoffset + starttime) in tzparse()
|
/third_party/ffmpeg/libavformat/ |
H A D | dashdec.c | 46 /* starttime: Element or Attribute Name 56 * (i.e. previous S@starttime + @duration * (@repeat + 1)). 58 int64_t starttime; member 261 if (pls->timelines[i]->starttime > 0) { in get_segment_start_time_based_on_timeline() 262 start_time = pls->timelines[i]->starttime; in get_segment_start_time_based_on_timeline() 295 if (pls->timelines[i]->starttime > 0) { in calc_next_seg_no_from_timelines() 296 start_time = pls->timelines[i]->starttime; in calc_next_seg_no_from_timelines() 684 tml->starttime = (int64_t)strtoll(val, NULL, 10); in parse_manifest_segmenttimeline() 2267 if (pls->timelines[i]->starttime > 0) { in dash_seek() 2268 duration = pls->timelines[i]->starttime; in dash_seek() [all...] |
/third_party/typescript/tests/verify_3rd_libs/ |
H A D | verify_3rd_libs.py | 332 starttime = datetime.now() 344 print(f"Test total cost {(datetime.now() - starttime).seconds} seconds")
|