Lines Matching refs:nslt
119 int lock_prev, nslt; in __cp_clock_gettime_realtime() local
127 nslt = (int)(__cp_gethrtime(cp) - cp->cp_hres_last_tick); in __cp_clock_gettime_realtime()
129 if (nslt < 0) { in __cp_clock_gettime_realtime()
135 now.tv_nsec += nslt; in __cp_clock_gettime_realtime()
141 nslt = (nslt >> ADJ_SHIFT); in __cp_clock_gettime_realtime()
142 if (nslt > hres_adj) in __cp_clock_gettime_realtime()
143 nslt = (int)hres_adj; in __cp_clock_gettime_realtime()
144 now.tv_nsec += nslt; in __cp_clock_gettime_realtime()
146 nslt = -(nslt >> ADJ_SHIFT); in __cp_clock_gettime_realtime()
147 if (nslt < hres_adj) in __cp_clock_gettime_realtime()
148 nslt = (int)hres_adj; in __cp_clock_gettime_realtime()
149 now.tv_nsec += nslt; in __cp_clock_gettime_realtime()