Searched refs:__ts (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | convert_to_timespec.h | 32 _TimeSpec __ts; in __convert_to_timespec() 33 typedef decltype(__ts.tv_sec) __ts_sec; in __convert_to_timespec() 37 __ts.tv_sec = static_cast<__ts_sec>(__s.count()); in __convert_to_timespec() 38 __ts.tv_nsec = static_cast<decltype(__ts.tv_nsec)>((__ns - __s).count()); in __convert_to_timespec() 40 __ts.tv_sec = __ts_sec_max; in __convert_to_timespec() 41 __ts.tv_nsec = 999999999; // (10^9 - 1) in __convert_to_timespec() 44 return __ts; in __convert_to_timespec() 34 _TimeSpec __ts; __convert_to_timespec() local
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | pid.h | 46 struct task_struct *__ts; \ 48 __ts = linux_pid_task(pid); \ 49 __ts; \ 53 struct task_struct *__ts; \ 55 __ts = linux_get_pid_task(pid); \ 56 __ts; \
|
/freebsd/contrib/llvm-project/libcxx/include/__thread/support/ |
H A D | pthread.h | 126 …cpp_condvar_timedwait(__libcpp_condvar_t* __cv, __libcpp_mutex_t* __m, __libcpp_timespec_t* __ts) { in __libcpp_condvar_timedwait() argument 127 return pthread_cond_timedwait(__cv, __m, __ts); in __libcpp_condvar_timedwait() 197 __libcpp_timespec_t __ts = std::__convert_to_timespec<__libcpp_timespec_t>(__ns); in __libcpp_thread_sleep_for() local 198 while (nanosleep(&__ts, &__ts) == -1 && errno == EINTR) in __libcpp_thread_sleep_for()
|
H A D | c11.h | 101 __libcpp_condvar_timedwait(__libcpp_condvar_t* __cv, __libcpp_mutex_t* __m, timespec* __ts) { in __libcpp_condvar_timedwait() argument 102 int __ec = cnd_timedwait(__cv, __m, __ts); in __libcpp_condvar_timedwait() 168 __libcpp_timespec_t __ts = std::__convert_to_timespec<__libcpp_timespec_t>(__ns); in __libcpp_thread_sleep_for() local 169 thrd_sleep(&__ts, nullptr); in __libcpp_thread_sleep_for()
|
H A D | windows.h | 74 …bcpp_condvar_timedwait(__libcpp_condvar_t* __cv, __libcpp_mutex_t* __m, __libcpp_timespec_t* __ts);
|
/freebsd/contrib/llvm-project/libcxx/include/__condition_variable/ |
H A D | condition_variable.h | 215 timespec __ts; in __do_timed_wait() local 217 using __ts_sec = decltype(__ts.tv_sec); in __do_timed_wait() 220 __ts.tv_sec = static_cast<__ts_sec>(__s.count()); in __do_timed_wait() 221 __ts.tv_nsec = (__d - __s).count(); in __do_timed_wait() 223 __ts.tv_sec = __ts_sec_max; in __do_timed_wait() 224 __ts.tv_nsec = giga::num - 1; in __do_timed_wait() 226 int __ec = pthread_cond_clockwait(&__cv_, __lk.mutex()->native_handle(), CLOCK_MONOTONIC, &__ts); in __do_timed_wait()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | locale | 2353 char_type& __ts, 2367 char_type& __ts, 2379 __ts = __mp.thousands_sep(); 2389 __ts = __mp.thousands_sep(); 2494 char_type __ts; 2503 …__money_get<_CharT>::__gather_info(__intl, __loc, __pat, __dp, __ts, __grp, __sym, __psn, __nsn, _… 2588 } else if (__grp.size() > 0 && __ng > 0 && __c == __ts) { 2727 char_type& __ts, 2743 char_type __ts, 2757 char_type& __ts, [all …]
|
/freebsd/sys/net/ |
H A D | pfvar.h | 308 uint32_t __ts; \ 311 __ts = *zpcpu_get_cpu(prule->timestamp, cpu); \ 312 if (__ts > _ts) \ 313 _ts = __ts; \
|