Searched refs:total_seconds (Results 1 – 25 of 54) sorted by relevance
123
/external/u-boot/cmd/ |
D | time.c | 12 ulong total_seconds, remainder; in report_time() local 14 total_seconds = cycles / CONFIG_SYS_HZ; in report_time() 16 minutes = total_seconds / 60; in report_time() 17 seconds = total_seconds % 60; in report_time()
|
/external/autotest/client/cros/video/ |
D | sequence_generator.py | 33 start_total_ms = int(start.total_seconds() * 1000) 34 stop_total_ms = int(stop.total_seconds() * 1000) 67 start_total_s = int(start.total_seconds()) 69 stop_total_s = int(stop.total_seconds())
|
D | vimeo_player.py | 42 int(t.total_seconds())))
|
D | native_html5_player.py | 99 cmd = '%s.currentTime=%.3f' % (self.video_id, t.total_seconds())
|
/external/autotest/contrib/ |
D | compare_suite.py | 196 self.get_first_task_start_time()).total_seconds() 202 time += task.time_used.total_seconds() 209 time += task.time_used_db.total_seconds() 216 self.time_used.total_seconds()) 222 self.time_used.total_seconds()) 243 total += task.time_used.total_seconds() 265 total += task.time_used_db.total_seconds() 311 [(HYPERLINK % (data[0].log, data[0].time_used.total_seconds())) 315 [HYPERLINK % (data[1].log, data[1].time_used.total_seconds()) 389 delimiter.join([str(suite_job.time_used.total_seconds()/60) [all …]
|
/external/v8/src/ |
D | dateparser.cc | 107 int total_seconds = static_cast<int>(total_seconds_unsigned); in Write() local 109 total_seconds = -total_seconds; in Write() 111 DCHECK(Smi::IsValid(total_seconds)); in Write() 112 output->set(UTC_OFFSET, Smi::FromInt(total_seconds)); in Write()
|
/external/python/apitools/apitools/base/protorpclite/ |
D | message_types.py | 102 time_zone_offset = util.total_seconds( 112 message.milliseconds = int(util.total_seconds(delta) * 1000) 117 util.total_seconds(value.tzinfo.utcoffset(value)) / 60)
|
D | util.py | 197 def total_seconds(offset): function 216 offset = total_seconds(offset) / 60
|
/external/autotest/client/site_tests/network_WiFiResume/ |
D | network_WiFiResume.py | 60 (dev, int(delay.total_seconds()*1000))) 69 (dev, int(delay.total_seconds()*1000)))
|
/external/autotest/server/site_tests/platform_SuspendResumeTiming/ |
D | platform_SuspendResumeTiming.py | 93 time_to_susp = (suspend_end - suspend_start).total_seconds() 94 time_to_res = (resume_end - resume_start).total_seconds()
|
/external/grpc-grpc/tools/github/ |
D | pr_latency.py | 78 str(int((test_time - base_time).total_seconds())), 90 return str((dt - datetime(1970, 1, 1)).total_seconds())
|
/external/autotest/site_utils/ |
D | job_history.py | 100 self.time_used = (self.end_time - self.start_time).total_seconds() 223 self.time_used = (self.end_time - self.start_time).total_seconds() 343 self.time_used = (self.end_time - self.start_time).total_seconds()
|
/external/grpc-grpc/tools/run_tests/ |
D | run_build_statistics.py | 142 'duration': matrix.get_duration().total_seconds() 245 build_result['duration'] = build.get_duration().total_seconds()
|
/external/toolchain-utils/mem_tests/ |
D | utils.py | 22 return (timestamp - base_time).total_seconds()
|
/external/fonttools/Lib/fontTools/ufoLib/ |
D | utils.py | 38 return (dt - EPOCH).total_seconds()
|
/external/python/dateutil/dateutil/tz/ |
D | _factories.py | 26 key = (name, offset.total_seconds())
|
D | tz.py | 137 offset = offset.total_seconds() 184 int(self._offset.total_seconds())) 893 stdoffset = stdoffset.total_seconds() 898 dstoffset = dstoffset.total_seconds() 1639 return (dt.replace(tzinfo=None) - EPOCH).total_seconds()
|
/external/autotest/client/site_tests/cheets_StartAndroid_P/ |
D | cheets_StartAndroid_P.py | 55 ).total_seconds()
|
/external/autotest/client/common_lib/ |
D | time_utils.py | 121 return (utc_datetime - epoch).total_seconds()
|
/external/autotest/client/site_tests/cheets_StartAndroid/ |
D | cheets_StartAndroid.py | 55 ).total_seconds()
|
/external/chromium-trace/catapult/common/lab/ |
D | commits.py | 87 commit_durations.append((time1 - time2).total_seconds() / 60.)
|
/external/autotest/server/site_tests/moblab_RunSuite/ |
D | moblab_RunSuite.py | 107 elasped_m = self.elapsed.total_seconds() / 60
|
/external/autotest/server/cros/cfm/utils/ |
D | bond_http_api.py | 163 return elapsed.total_seconds() > _TOKEN_TTL_SECONDS
|
/external/python/google-api-python-client/googleapiclient/discovery_cache/ |
D | file_cache.py | 54 return (date - EPOCH).total_seconds()
|
/external/autotest/client/site_tests/desktopui_ScreenLocker/ |
D | desktopui_ScreenLocker.py | 77 perf_values['lock_seconds'] = (datetime.now() - start).total_seconds()
|
123