Home | History | Annotate | Download | only in adaptation

Lines Matching full:1000

130 #define     POLL_TIMEOUT    1000
205 // t->lapse /= 1000;
239 lapse /= 1000;
339 if (delay > 1000)
341 linux_cb.write_time.tv_sec += delay / 1000;
342 delay %= 1000;
344 unsigned long write_delay = delay * 1000 * 1000;
346 if (linux_cb.write_time.tv_nsec > 1000*1000*1000)
348 linux_cb.write_time.tv_nsec -= 1000*1000*1000;
382 delay = (linux_cb.write_time.tv_sec - now.tv_sec) * 1000 + linux_cb.write_time.tv_nsec / 1000000 - now.tv_nsec / 1000000;
384 if (delay > 0 && delay < 1000)
1178 setWriteDelay(total * nfc_write_delay / 1000);