Home
last modified time | relevance | path

Searched refs:system_time (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/core/platform/windows/
Denv_time.cc54 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/
Dcrash_report_sender.cc121 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/
Dbench.c48 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/
Dcompat.h95 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/
Dtest_chrono.cpp34 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/
Dminimal-http-client-multi.c246 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/
Dtime.h95 info.system_time.seconds * 1000000000LL + in GetThreadCPUTimeNs()
96 info.system_time.microseconds * 1000LL); in GetThreadCPUTimeNs()
/external/libcxx/utils/google-benchmark/src/
Dtimers.cc92 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/
Dtimers.cc92 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/
Dtimers.cc92 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/
Dtimers.cc93 static_cast<double>(info.system_time.seconds) + in MakeTime()
94 static_cast<double>(info.system_time.microseconds) * 1e-6); in MakeTime()
/external/libpcap/
Dpcap-haiku.cpp100 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/
Dpytime.c662 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/
Dexamine-threads.c460 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/
Dcontrol.proto212 // 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/
Dcontrol.proto225 // 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/
DMachThread.cpp334 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()
DMachTask.mm287 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/
Dminidump.cc184 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/
Dnt-base.c570 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/
Dnative.rs781 pub fn system_time() -> bigtime_t; in system_time() function