/external/tensorflow/tensorflow/core/platform/windows/ |
D | env_time.cc | 54 FILETIME system_time; in NowNanos() local 55 precise_time_function(&system_time); in NowNanos() 58 li.LowPart = system_time.dwLowDateTime; in NowNanos() 59 li.HighPart = system_time.dwHighDateTime; in NowNanos()
|
/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/libxkbcommon/bench/ |
D | bench.c | 48 SYSTEMTIME system_time; in gettimeofday() local 52 GetSystemTime(&system_time); in gettimeofday() 53 SystemTimeToFileTime(&system_time, &file_time); in gettimeofday() 58 tv->tv_usec = (long) (system_time.wMilliseconds * 1000); in gettimeofday()
|
/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/python/pybind11/tests/ |
D | test_chrono.cpp | 34 using system_time = std::chrono::system_clock::time_point; in TEST_SUBMODULE() typedef 46 m.def("test_chrono2", [](system_time t) { return t; }); in TEST_SUBMODULE() 54 m.def("test_chrono4", [](system_time a, system_time b) { return a - b; }); in TEST_SUBMODULE()
|
/external/libwebsockets/minimal-examples/http-client/minimal-http-client-multi/ |
D | minimal-http-client-multi.c | 246 SYSTEMTIME system_time; in gettimeofday() local 250 GetSystemTime( &system_time ); in gettimeofday() 251 SystemTimeToFileTime( &system_time, &file_time ); in gettimeofday() 256 tp->tv_usec = (long) (system_time.wMilliseconds * 1000); in gettimeofday()
|
/external/perfetto/include/perfetto/base/ |
D | time.h | 95 info.system_time.seconds * 1000000000LL + in GetThreadCPUTimeNs() 96 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/llvm-project/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/llvm-project/llvm/utils/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 | 93 static_cast<double>(info.system_time.seconds) + in MakeTime() 94 static_cast<double>(info.system_time.microseconds) * 1e-6); in MakeTime()
|
/external/libpcap/ |
D | pcap-haiku.cpp | 100 header.ts.tv_usec = system_time() % 1000000; in pcap_read_haiku() 101 header.ts.tv_sec = system_time() / 1000000; in pcap_read_haiku()
|
/external/python/cpython3/Python/ |
D | pytime.c | 662 FILETIME system_time; in pygettimeofday() local 667 GetSystemTimeAsFileTime(&system_time); in pygettimeofday() 668 large.u.LowPart = system_time.dwLowDateTime; in pygettimeofday() 669 large.u.HighPart = system_time.dwHighDateTime; in pygettimeofday()
|
/external/llvm-project/lldb/tools/darwin-threads/ |
D | examine-threads.c | 460 basic_info->system_time.seconds, in main() 461 basic_info->system_time.microseconds); in main()
|
/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/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachThread.cpp | 334 m_basic_info.user_time.microseconds, m_basic_info.system_time.seconds, in Dump() 335 m_basic_info.system_time.microseconds, m_basic_info.cpu_usage, in Dump()
|
D | MachTask.mm | 287 TIME_VALUE_TO_TIMEVAL(&basic_info.system_time, &tv); 343 TIME_VALUE_TO_TIMEVAL(&task_info.system_time, &tv); 571 "system_time = %f }",
|
/external/google-breakpad/src/processor/ |
D | minidump.cc | 184 inline void Swap(MDSystemTime* system_time) { in Swap() argument 185 Swap(&system_time->year); in Swap() 186 Swap(&system_time->month); in Swap() 187 Swap(&system_time->day_of_week); in Swap() 188 Swap(&system_time->day); in Swap() 189 Swap(&system_time->hour); in Swap() 190 Swap(&system_time->minute); in Swap() 191 Swap(&system_time->second); in Swap() 192 Swap(&system_time->milliseconds); in Swap()
|
/external/ImageMagick/MagickCore/ |
D | nt-base.c | 570 system_time; in NTElapsedTime() local 582 GetSystemTime(&system_time); in NTElapsedTime() 583 SystemTimeToFileTime(&system_time,&elapsed_time.filetime); in NTElapsedTime()
|
/external/rust/crates/libc/src/unix/haiku/ |
D | native.rs | 781 pub fn system_time() -> bigtime_t; in system_time() function
|