Home
last modified time | relevance | path

Searched refs:__ts (Results 1 – 3 of 3) sorted by relevance

/external/libcxx/include/
D__threading_support155 timespec *__ts);
294 timespec *__ts)
296 return pthread_cond_timedwait(__cv, __m, __ts);
363 timespec __ts;
364 typedef decltype(__ts.tv_sec) ts_sec;
369 __ts.tv_sec = static_cast<ts_sec>(__s.count());
370 __ts.tv_nsec = static_cast<decltype(__ts.tv_nsec)>((__ns - __s).count());
374 __ts.tv_sec = __ts_sec_max;
375 __ts.tv_nsec = 999999999; // (10^9 - 1)
378 while (nanosleep(&__ts, &__ts) == -1 && errno == EINTR);
Dlocale2729 char_type& __ts, string& __grp,
2738 char_type& __ts, string& __grp,
2750 __ts = __mp.thousands_sep();
2763 __ts = __mp.thousands_sep();
2872 char_type __ts;
2881 __money_get<_CharT>::__gather_info(__intl, __loc, __pat, __dp, __ts, __grp,
3008 else if (__grp.size() > 0 && __ng > 0 && __c == __ts)
3169 char_type& __ts, string& __grp,
3177 char_type __ts, const string& __grp,
3186 char_type& __ts, string& __grp,
[all …]
/external/libcxx/src/support/win32/
Dthread_win32.cpp114 timespec *__ts) in __libcpp_condvar_timedwait() argument
118 auto duration = seconds(__ts->tv_sec) + nanoseconds(__ts->tv_nsec); in __libcpp_condvar_timedwait()