Home
last modified time | relevance | path

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

123

/third_party/boost/boost/chrono/detail/inlined/win/
Dprocess_cpu_clocks.hpp75 boost::winapi::FILETIME_ creation, exit, user_time, system_time; in now() local
79 &system_time, &user_time ) ) in now()
100 boost::winapi::FILETIME_ creation, exit, user_time, system_time; in now() local
104 &system_time, &user_time ) ) in now()
140 boost::winapi::FILETIME_ creation, exit, user_time, system_time; in now() local
144 &system_time, &user_time ) ) in now()
147 ((static_cast<process_system_cpu_clock::rep>(system_time.dwHighDateTime) << 32) in now()
148 | system_time.dwLowDateTime) * 100 in now()
165 boost::winapi::FILETIME_ creation, exit, user_time, system_time; in now() local
169 &system_time, &user_time ) ) in now()
[all …]
Dthread_clock.hpp32 boost::winapi::FILETIME_ creation, exit, user_time, system_time; in now() local
36 &system_time, &user_time ) ) in now()
43 ((static_cast<duration::rep>(system_time.dwHighDateTime) << 32) in now()
44 | system_time.dwLowDateTime) * 100 ); in now()
76 boost::winapi::FILETIME_ creation, exit, user_time, system_time; in now() local
80 &system_time, &user_time ) ) in now()
87 ((static_cast<duration::rep>(system_time.dwHighDateTime) << 32) in now()
88 | system_time.dwLowDateTime) * 100 ); in now()
/third_party/boost/libs/thread/test/
Dtest_condition_timed_wait_times_out.cpp35 boost::system_time const start=boost::get_system_time(); in do_test_timed_wait_times_out()
36 boost::system_time const timeout=start+delay; in do_test_timed_wait_times_out()
40 boost::system_time const end=boost::get_system_time(); in do_test_timed_wait_times_out()
51 boost::system_time const start=boost::get_system_time(); in do_test_timed_wait_with_predicate_times_out()
52 boost::system_time const timeout=start+delay; in do_test_timed_wait_with_predicate_times_out()
56 boost::system_time const end=boost::get_system_time(); in do_test_timed_wait_with_predicate_times_out()
68 boost::system_time const start=boost::get_system_time(); in do_test_relative_timed_wait_with_predicate_times_out()
72 boost::system_time const end=boost::get_system_time(); in do_test_relative_timed_wait_with_predicate_times_out()
84 boost::system_time const start=boost::get_system_time(); in do_test_timed_wait_relative_times_out()
88 boost::system_time const end=boost::get_system_time(); in do_test_timed_wait_relative_times_out()
[all …]
Dtest_shared_mutex_timed_locks.cpp33 boost::system_time const start=boost::get_system_time(); in BOOST_AUTO_TEST_CASE()
34 boost::system_time const timeout=start+boost::posix_time::milliseconds(500); in BOOST_AUTO_TEST_CASE()
45 boost::system_time const timeout2=boost::get_system_time()+wait_duration; in BOOST_AUTO_TEST_CASE()
64 boost::system_time const start=boost::get_system_time(); in BOOST_AUTO_TEST_CASE()
65 boost::system_time const timeout=start+boost::posix_time::milliseconds(500); in BOOST_AUTO_TEST_CASE()
76 boost::system_time const timeout2=boost::get_system_time()+wait_duration; in BOOST_AUTO_TEST_CASE()
98 boost::system_time const start=boost::get_system_time(); in BOOST_AUTO_TEST_CASE()
99 boost::system_time const timeout=start+boost::posix_time::milliseconds(500); in BOOST_AUTO_TEST_CASE()
110 boost::system_time const timeout2=boost::get_system_time()+wait_duration; in BOOST_AUTO_TEST_CASE()
134 boost::system_time const start=boost::get_system_time(); in BOOST_AUTO_TEST_CASE()
[all …]
Dtest_mutex.cpp207 boost::system_time xt = boost::get_system_time()+boost::posix_time::milliseconds(100); in operator ()()
220 boost::system_time timeout = boost::get_system_time()+boost::posix_time::milliseconds(100); in operator ()()
228 boost::system_time now=boost::get_system_time(); in operator ()()
239 boost::system_time target = boost::get_system_time()+boost::posix_time::milliseconds(100); in operator ()()
Dcondition_test_common.hpp64 …boost::system_time const timeout=boost::get_system_time()+boost::posix_time::seconds(timeout_secon… in timed_wait_without_predicate()
79 …boost::system_time const timeout=boost::get_system_time()+boost::posix_time::seconds(timeout_secon… in timed_wait_with_predicate()
/third_party/boost/boost/thread/
Dthread_time.hpp17 typedef boost::posix_time::ptime system_time; typedef
19 inline system_time get_system_time() in get_system_time()
22 return boost::date_time::microsec_clock<system_time>::universal_time(); in get_system_time()
24 return boost::date_time::second_clock<system_time>::universal_time(); in get_system_time()
30 inline system_time get_system_time_sentinel() in get_system_time_sentinel()
32 return system_time(boost::posix_time::pos_infin); in get_system_time_sentinel()
35 inline unsigned long get_milliseconds_until(system_time const& target_time) in get_milliseconds_until()
41 system_time const now=get_system_time(); in get_milliseconds_until()
Dxtime.hpp47 operator system_time() const in operator system_time()
60 inline ::boost::xtime get_xtime(boost::system_time const& abs_time) in get_xtime()
/third_party/boost/libs/thread/doc/
Dtime.qbk32 …time parameter, an object of type [link thread.time.deprecated.system_time `boost::system_time`] is
36 … boost::system_time const timeout=boost::get_system_time() + boost::posix_time::milliseconds(500);
62 [section:system_time Typedef `system_time`]
66 typedef boost::posix_time::ptime system_time;
76 system_time get_system_time();
Dlockable_adapter.qbk56 bool try_lock_until(system_time const & abs_time);
60 void lock_until(system_time const & abs_time);
76 bool try_lock_shared_until(system_time const& t);
82 void lock_shared_until(system_time const& t);
103 bool try_lock_upgrade_until(system_time const&t);
106 void lock_upgrade_until(system_time const&t);
/third_party/flutter/skia/third_party/externals/sdl/src/timer/haiku/
DSDL_systimer.c41 start = system_time(); in SDL_TicksInit()
57 return ((system_time() - start) / 1000); in SDL_GetTicks()
63 return system_time(); in SDL_GetPerformanceCounter()
/third_party/boost/boost/chrono/detail/inlined/mac/
Dthread_clock.hpp44 static_cast<thread_clock::rep>( info.system_time.seconds ) * 1000000000 in now()
45 + static_cast<thread_clock::rep>( info.system_time.microseconds ) * 1000); in now()
86 static_cast<thread_clock::rep>( info.system_time.seconds ) * 1000000000 in now()
87 + static_cast<thread_clock::rep>( info.system_time.microseconds ) * 1000); in now()
/third_party/ffmpeg/libavdevice/
Dtimefilter.c72 double ff_timefilter_update(TimeFilter *self, double system_time, double period) in ff_timefilter_update() argument
76 self->cycle_time = system_time; in ff_timefilter_update()
80 loop_error = system_time - self->cycle_time; in ff_timefilter_update()
Dtimefilter.h71 double ff_timefilter_update(TimeFilter *self, double system_time, double period);
/third_party/boost/boost/thread/win32/
Dcondition_variable.hpp350 bool timed_wait(unique_lock<mutex>& m,boost::system_time const& abs_time) in timed_wait()
366 return timed_wait(m, system_time(abs_time)); in timed_wait()
385 … bool timed_wait(unique_lock<mutex>& m,boost::system_time const& abs_time,predicate_type pred) in timed_wait()
403 return timed_wait(m, system_time(abs_time), pred); in timed_wait()
547 bool timed_wait(lock_type& m,boost::system_time const& abs_time) in timed_wait()
565 return timed_wait(m, system_time(abs_time)); in timed_wait()
585 bool timed_wait(lock_type& m,boost::system_time const& abs_time,predicate_type pred) in timed_wait()
604 return timed_wait(m, system_time(abs_time), pred); in timed_wait()
Dbasic_recursive_mutex.hpp62 bool timed_lock(::boost::system_time const& target) in timed_lock()
121 bool try_timed_lock(long current_thread_id,::boost::system_time const& target) in try_timed_lock()
Dbasic_timed_mutex.hpp197 bool timed_lock(::boost::system_time const& wait_until) in timed_lock()
213 return timed_lock(boost::system_time(timeout)); in timed_lock()
/third_party/boost/boost/thread/pthread/
Dcondition_variable_fwd.hpp100 boost::system_time const& abs_time) in timed_wait()
126 return timed_wait(m,system_time(abs_time)); in timed_wait()
163 boost::system_time const& abs_time,predicate_type pred) in timed_wait()
192 return timed_wait(m,system_time(abs_time),pred); in timed_wait()
Dcondition_variable.hpp223 bool timed_wait(lock_type& m,boost::system_time const& abs_time) in timed_wait()
248 return timed_wait(m,system_time(abs_time)); in timed_wait()
281 bool timed_wait(lock_type& m,boost::system_time const& abs_time, predicate_type pred) in timed_wait()
308 return timed_wait(m,system_time(abs_time),pred); in timed_wait()
Dthread_data.hpp266 inline void sleep(system_time const& abs_time) in sleep()
320 inline void sleep(system_time const& abs_time) in sleep()
375 inline void sleep(system_time const& abs_time)
/third_party/node/deps/uvwasi/src/
Dclocks.c88 (info.system_time.seconds * NANOS_PER_SEC) + \
89 (info.system_time.microseconds * 1000); \
/third_party/json/benchmarks/thirdparty/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()
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-multi/
Dminimal-http-client-multi.c465 SYSTEMTIME system_time; in gettimeofday() local
469 GetSystemTime( &system_time ); in gettimeofday()
470 SystemTimeToFileTime( &system_time, &file_time ); in gettimeofday()
475 tp->tv_usec = (long) (system_time.wMilliseconds * 1000); in gettimeofday()
/third_party/benchmark/src/
Dtimers.cc94 static_cast<double>(info.system_time.seconds) + in MakeTime()
95 static_cast<double>(info.system_time.microseconds) * 1e-6); in MakeTime()
/third_party/boost/libs/atomic/test/
Dordering_ref.cpp107 boost::system_time start = boost::get_system_time(); in run()
108 boost::system_time end = start + timeout; in run()

123