Home
last modified time | relevance | path

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

/external/libcxx/include/
D__threading_support152 timespec *__ts);
291 timespec *__ts)
293 return pthread_cond_timedwait(__cv, __m, __ts);
360 timespec __ts;
361 typedef decltype(__ts.tv_sec) ts_sec;
366 __ts.tv_sec = static_cast<ts_sec>(__s.count());
367 __ts.tv_nsec = static_cast<decltype(__ts.tv_nsec)>((__ns - __s).count());
371 __ts.tv_sec = __ts_sec_max;
372 __ts.tv_nsec = 999999999; // (10^9 - 1)
375 while (nanosleep(&__ts, &__ts) == -1 && errno == EINTR);
Dlocale2748 char_type& __ts, string& __grp,
2757 char_type& __ts, string& __grp,
2769 __ts = __mp.thousands_sep();
2782 __ts = __mp.thousands_sep();
2891 char_type __ts;
2900 __money_get<_CharT>::__gather_info(__intl, __loc, __pat, __dp, __ts, __grp,
3027 else if (__grp.size() > 0 && __ng > 0 && __c == __ts)
3188 char_type& __ts, string& __grp,
3196 char_type __ts, const string& __grp,
3205 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()
/external/crosvm/usb_util/src/
Dbindings.rs1972 __ts: *mut timespec, in timespec_get()