Searched defs:ms (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/bionic/
H A Dbionic_time_conversions.cpp45 void timespec_from_ms(timespec& ts, const int ms) { argument
46 ts.tv_sec = ms / 1000;
47 ts.tv_nsec = (ms % 1000) * 1000000;
H A Dpoll.cpp40 int poll(pollfd* fds, nfds_t fd_count, int ms) { argument
43 if (ms >= 0) {
44 timespec_from_ms(ts, ms);
H A Dpthread_cond.cpp240 pthread_mutex_t* mutex, unsigned ms) {
242 timespec_from_ms(ts, ms);
239 pthread_cond_timeout_np(pthread_cond_t* cond_interface, pthread_mutex_t* mutex, unsigned ms) argument
H A Dpthread_mutex.cpp615 extern "C" int pthread_mutex_lock_timeout_np(pthread_mutex_t* mutex_interface, unsigned ms) { argument
617 timespec_from_ms(ts, ms);
/bionic/tests/
H A Dsemaphore_test.cpp95 static inline void timespec_add_ms(timespec& ts, size_t ms) { argument
96 ts.tv_sec += ms / 1000;
97 ts.tv_nsec += (ms % 1000) * 1000000;
/bionic/libc/kernel/uapi/drm/
H A Dvia_drm.h134 __u32 ms; member in struct:_drm_via_futex
/bionic/libc/kernel/uapi/linux/
H A Dnvme.h112 __le16 ms; member in struct:nvme_lbaf

Completed in 771 milliseconds