Lines Matching refs:millis
292 static ossl_inline void ossl_sleep(unsigned long millis)
296 ts.tv_sec = (long int) (millis / 1000);
297 ts.tv_nsec = (long int) (millis % 1000) * 1000000ul;
303 PROCESS_DELAY_(millis * 1000);
305 unsigned int s = (unsigned int)(millis / 1000);
306 unsigned int us = (unsigned int)((millis % 1000) * 1000);
315 static ossl_inline void ossl_sleep(unsigned long millis)
317 Sleep(millis);
321 static ossl_inline void ossl_sleep(unsigned long millis)
331 } while (elapsedms < millis);