Lines Matching refs:tv_nsec
27 } else if ((uint32_t)ts.tv_nsec < (uint32_t)-1) {
28 ts.tv_nsec++;
31 ts.tv_nsec = 0;
34 (unsigned int)ts.tv_nsec,
72 ioloop_timeval.tv_usec * 1000 > ts.tv_nsec)) {
77 ts.tv_nsec = ioloop_timeval.tv_usec*1000;
78 } else if (ts.tv_nsec < 999999999L) {
79 ts.tv_nsec++;
82 ts.tv_nsec = 0;
85 guid_r[0] = (ts.tv_nsec & 0x000000ff);
86 guid_r[1] = (ts.tv_nsec & 0x0000ff00) >> 8;
87 guid_r[2] = (ts.tv_nsec & 0x00ff0000) >> 16;
88 guid_r[3] = (ts.tv_nsec & 0xff000000) >> 24;