Searched refs:microsecs (Results 1 – 1 of 1) sorted by relevance
47 #define TIME_INCREASE(time, microsecs) time += microsecs / 1000000 argument76 #define TIME_INCREASE(time, microsecs) \ argument77 ((time).tv_sec += ((microsecs) / 1000000) + \78 ((time).tv_usec + (microsecs) % 1000000) / 1000000), \79 ((time).tv_usec = ((time).tv_usec + (microsecs) % 1000000) % 1000000)