/external/webrtc/webrtc/system_wrappers/source/ |
D | trace_win.cc | 30 SYSTEMTIME system_time; in AddTime() local 31 GetSystemTime(&system_time); in AddTime() 48 sprintf(trace_message, "(%2u:%2u:%2u:%3u |%5u) ", system_time.wHour, in AddTime() 49 system_time.wMinute, system_time.wSecond, in AddTime() 50 system_time.wMilliseconds, dw_delta_time); in AddTime() 65 sprintf(trace_message, "(%2u:%2u:%2u:%3u |%5u) ", system_time.wHour, in AddTime() 66 system_time.wMinute, system_time.wSecond, in AddTime() 67 system_time.wMilliseconds, dw_delta_time); in AddTime()
|
D | trace_posix.cc | 39 const struct tm* system_time = in AddTime() local 67 sprintf(trace_message, "(%2u:%2u:%2u:%3u |%5lu) ", system_time->tm_hour, in AddTime() 68 system_time->tm_min, system_time->tm_sec, ms_time, in AddTime()
|
/external/google-breakpad/src/client/windows/sender/ |
D | crash_report_sender.cc | 121 SYSTEMTIME system_time; in GetCurrentDate() local 122 GetSystemTime(&system_time); in GetCurrentDate() 123 return (system_time.wYear * 10000) + (system_time.wMonth * 100) + in GetCurrentDate() 124 system_time.wDay; in GetCurrentDate()
|
/external/tensorflow/tensorflow/core/platform/windows/ |
D | env_time.cc | 56 FILETIME system_time; in NowNanos() local 57 GetSystemTimePreciseAsFileTime_(&system_time); in NowNanos() 60 li.LowPart = system_time.dwLowDateTime; in NowNanos() 61 li.HighPart = system_time.dwHighDateTime; in NowNanos()
|
/external/conscrypt/common/src/jni/main/include/conscrypt/ |
D | compat.h | 95 SYSTEMTIME system_time; in gettimeofday() local 99 GetSystemTime(&system_time); in gettimeofday() 100 SystemTimeToFileTime(&system_time, &file_time); in gettimeofday() 105 tp->tv_usec = static_cast<long>(system_time.wMilliseconds * 1000); // NOLINT(runtime/int) in gettimeofday()
|
/external/perfetto/include/perfetto/base/ |
D | time.h | 94 info.system_time.seconds * 1000000000LL + in GetThreadCPUTimeNs() 95 info.system_time.microseconds * 1000LL); in GetThreadCPUTimeNs()
|
/external/libcxx/utils/google-benchmark/src/ |
D | timers.cc | 92 static_cast<double>(info.system_time.seconds) + in MakeTime() 93 static_cast<double>(info.system_time.microseconds) * 1e-6); in MakeTime()
|
/external/google-benchmark/src/ |
D | timers.cc | 92 static_cast<double>(info.system_time.seconds) + in MakeTime() 93 static_cast<double>(info.system_time.microseconds) * 1e-6); in MakeTime()
|
/external/python/cpython3/Python/ |
D | pytime.c | 656 FILETIME system_time; in pygettimeofday() local 661 GetSystemTimeAsFileTime(&system_time); in pygettimeofday() 662 large.u.LowPart = system_time.dwLowDateTime; in pygettimeofday() 663 large.u.HighPart = system_time.dwHighDateTime; in pygettimeofday()
|
/external/grpc-grpc-java/benchmarks/src/main/proto/grpc/testing/ |
D | control.proto | 212 // server load based on system_time (0.85 => 85%) 216 // client load based on system_time (0.85 => 85%)
|
/external/grpc-grpc/src/proto/grpc/testing/ |
D | control.proto | 225 // server load based on system_time (0.85 => 85%) 229 // client load based on system_time (0.85 => 85%)
|
/external/google-breakpad/src/processor/ |
D | minidump.cc | 200 static inline void Swap(MDSystemTime* system_time) { in Swap() argument 201 Swap(&system_time->year); in Swap() 202 Swap(&system_time->month); in Swap() 203 Swap(&system_time->day_of_week); in Swap() 204 Swap(&system_time->day); in Swap() 205 Swap(&system_time->hour); in Swap() 206 Swap(&system_time->minute); in Swap() 207 Swap(&system_time->second); in Swap() 208 Swap(&system_time->milliseconds); in Swap()
|
/external/v8/src/base/platform/ |
D | time.cc | 45 thread_info_data.system_time.seconds); in ComputeThreadTicks() 48 thread_info_data.system_time.microseconds); in ComputeThreadTicks()
|
/external/ImageMagick/MagickCore/ |
D | nt-base.c | 630 system_time; in NTElapsedTime() local 642 GetSystemTime(&system_time); in NTElapsedTime() 643 SystemTimeToFileTime(&system_time,&elapsed_time.filetime); in NTElapsedTime()
|
/external/openssh/openbsd-compat/ |
D | bsd-cray.c | 188 time_t system_time; /* current system clock */ in cray_setup() local
|