/external/llvm-project/libcxx/test/std/utilities/time/time.clock/time.clock.system/ |
D | sys.time.types.pass.cpp | 38 using sys_minutes = std::chrono::sys_time<minutes>; in main() 43 ASSERT_SAME_TYPE(std::chrono::sys_time<seconds>, sys_seconds); in main() 44 ASSERT_SAME_TYPE(std::chrono::sys_time<days>, sys_days); in main()
|
/external/libcxx/test/std/utilities/time/time.clock/time.clock.system/ |
D | sys.time.types.pass.cpp | 39 using sys_minutes = std::chrono::sys_time<minutes>; in main() 44 ASSERT_SAME_TYPE(std::chrono::sys_time<seconds>, sys_seconds); in main() 45 ASSERT_SAME_TYPE(std::chrono::sys_time<days>, sys_days); in main()
|
/external/rust/crates/chrono/src/sys/ |
D | windows.rs | 116 let sys_time = tm_to_system_time(tm); in utc_tm_to_time() localVariable 117 call!(SystemTimeToFileTime(&sys_time, &mut ft)); in utc_tm_to_time() 126 let mut sys_time = tm_to_system_time(tm); in local_tm_to_time() localVariable 127 call!(TzSpecificLocalTimeToSystemTime(0 as *mut _, &mut sys_time, &mut utc)); in local_tm_to_time()
|
/external/strace/ |
D | mx32_funcs.h | 9 #undef sys_time 10 #define sys_time mx32_sys_time macro
|
D | m32_funcs.h | 9 #undef sys_time 10 #define sys_time m32_sys_time macro
|
/external/ltp/testcases/kernel/syscalls/acct/ |
D | acct02.c | 75 int sys_time = UNPACK(ACCT_MEMBER(ac_stime)); in verify_acct() local 116 tmp2 = sys_time/clock_ticks; in verify_acct() 119 sys_time, clock_ticks, tmp2); in verify_acct()
|
/external/ltp/utils/benchmark/ebizzy-0.3/ |
D | ebizzy.c | 457 struct timeval usr_time, sys_time; in start_threads() local 502 sys_time = difftimeval(&end_ru.ru_stime, &start_ru.ru_stime); in start_threads() 506 printf("sys %5.2f s\n", sys_time.tv_sec + sys_time.tv_usec / 1e6); in start_threads()
|
/external/dng_sdk/source/ |
D | dng_pthread.cpp | 670 __int64 sys_time = (__int64)sys_timespec.tv_sec * 1000000000 + sys_timespec.tv_nsec; in dng_pthread_cond_timedwait() local 673 int wait_millisecs = (int)((lock_time - sys_time + 500000) / 1000000); in dng_pthread_cond_timedwait() 1110 __int64 sys_time = ((__int64)ft.dwHighDateTime << 32) + ft.dwLowDateTime; in dng_pthread_now() local 1114 sys_time -= SecsFrom1601To1970 * 10000000LL; in dng_pthread_now() 1116 sys_time *= 100; // Convert from 100ns to 1ns units in dng_pthread_now() 1118 now->tv_sec = (long)(sys_time / 1000000000); in dng_pthread_now() 1119 now->tv_nsec = (long)(sys_time % 1000000000); in dng_pthread_now()
|
/external/icu/icu4c/source/tools/tzcode/ |
D | private.h | 256 static time_t sys_time(time_t *x) { return time(x); } in sys_time() function 293 time_t r = sys_time(0); in time()
|
/external/ltp/utils/benchmark/kernbench-0.42/ |
D | kernbench | 202 read elapsed_time user_time sys_time percent ctx sleeps <timelog 205 temp_sys=`add_data_point $sys_time $temp_sys`
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
D | test_vsyscall.c | 169 static inline long sys_time(time_t *t) in sys_time() function 272 t_sys1 = sys_time(&t2_sys1); in test_time() 277 t_sys2 = sys_time(&t2_sys2); in test_time()
|
/external/llvm/include/llvm/Support/ |
D | Process.h | 64 TimeValue &sys_time);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Process.h | 65 std::chrono::nanoseconds &sys_time);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Process.h | 82 std::chrono::nanoseconds &sys_time);
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | Process.h | 88 std::chrono::nanoseconds &sys_time);
|
/external/strace/linux/ |
D | dummy.h | 99 #define sys_stime sys_time
|
/external/libusb/libusb/os/ |
D | darwin_usb.c | 2186 mach_timespec_t sys_time; in usbi_get_monotonic_time() local 2189 clock_get_time (clock_monotonic, &sys_time); in usbi_get_monotonic_time() 2191 tp->tv_sec = sys_time.tv_sec; in usbi_get_monotonic_time() 2192 tp->tv_nsec = sys_time.tv_nsec; in usbi_get_monotonic_time() 2196 mach_timespec_t sys_time; in usbi_get_real_time() local 2199 clock_get_time (clock_realtime, &sys_time); in usbi_get_real_time() 2201 tp->tv_sec = sys_time.tv_sec; in usbi_get_real_time() 2202 tp->tv_nsec = sys_time.tv_nsec; in usbi_get_real_time()
|
/external/selinux/libsepol/tests/policies/test-hooks/ |
D | small-base.conf | 383 sys_time
|
D | cmp_policy.conf | 383 sys_time
|
/external/selinux/libsepol/tests/policies/test-expander/ |
D | alias-base.conf | 383 sys_time
|
D | role-base.conf | 383 sys_time
|
D | user-base.conf | 383 sys_time
|
/external/libcxx/include/ |
D | chrono | 281 using sys_time = time_point<system_clock, Duration>; // C++20 282 using sys_seconds = sys_time<seconds>; // C++20 283 using sys_days = sys_time<days>; // C++20 680 bool operator==(const leap& x, const sys_time<Duration>& y); 682 bool operator==(const sys_time<Duration>& x, const leap& y); 684 bool operator!=(const leap& x, const sys_time<Duration>& y); 686 bool operator!=(const sys_time<Duration>& x, const leap& y); 688 bool operator< (const leap& x, const sys_time<Duration>& y); 690 bool operator< (const sys_time<Duration>& x, const leap& y); 692 bool operator> (const leap& x, const sys_time<Duration>& y); [all …]
|
/external/llvm-project/libcxx/include/ |
D | chrono | 280 using sys_time = time_point<system_clock, Duration>; // C++20 281 using sys_seconds = sys_time<seconds>; // C++20 282 using sys_days = sys_time<days>; // C++20 709 bool operator==(const leap& x, const sys_time<Duration>& y); 711 bool operator==(const sys_time<Duration>& x, const leap& y); 713 bool operator!=(const leap& x, const sys_time<Duration>& y); 715 bool operator!=(const sys_time<Duration>& x, const leap& y); 717 bool operator< (const leap& x, const sys_time<Duration>& y); 719 bool operator< (const sys_time<Duration>& x, const leap& y); 721 bool operator> (const leap& x, const sys_time<Duration>& y); [all …]
|
/external/selinux/libsepol/tests/policies/test-deps/ |
D | base-notmetreq.conf | 378 sys_time
|