Lines Matching refs:nslt
218 * number of nanoseconds since the last clock tick ('nslt'). It also
227 #define GET_HRESTIME(hrestsec, hrestnsec, adj, nslt, nano, scr, hrlock, \
233 ldx [scr + %lo(hres_last_tick)], nslt; \
239 subcc adj, nslt, nslt; /* nslt = ticks since last clockint */ \
240 movneg %xcc, %g0, nslt; /* ignore neg delta from tick skew */ \
244 NATIVE_TIME_TO_NSEC_SCALE(nslt, nano, gnt1, NSEC_SHIFT); \
254 #define GET_HRTIME(base, now, nslt, scale, scr, hrlock, gnt1, gnt2, label) \
259 ldx [scr + %lo(hres_last_tick)], nslt; \
263 subcc now, nslt, nslt; /* nslt = ticks since last clockint */ \
264 movneg %xcc, %g0, nslt; /* ignore neg delta from tick skew */ \
267 NATIVE_TIME_TO_NSEC_SCALE(nslt, scale, gnt1, NSEC_SHIFT); \
271 add base, nslt, base;