Home
last modified time | relevance | path

Searched refs:nticks (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dticker.h16 int32_t nticks; member
20 ticker_init(ticker_t *ticker, int32_t nticks) { in ticker_init() argument
21 ticker->tick = nticks; in ticker_init()
22 ticker->nticks = nticks; in ticker_init()
60 ticker->tick = ticker->nticks; in ticker_fixup()
65 ticker_ticks(ticker_t *ticker, int32_t nticks) { in ticker_ticks() argument
66 ticker->tick -= nticks; in ticker_ticks()
H A Darena_inlines_b.h113 arena_decay_ticks(tsdn_t *tsdn, arena_t *arena, unsigned nticks) { in arena_decay_ticks() argument
125 if (unlikely(ticker_ticks(decay_ticker, nticks))) { in arena_decay_ticks()
/freebsd/sys/powerpc/powerpc/
H A Dclock.c123 int nticks = 0; in decr_intr() local
147 nticks++; in decr_intr()
151 nticks = 1; in decr_intr()
158 while (nticks-- > 0) { in decr_intr()
/freebsd/sys/arm/mv/
H A Dtimer.c309 int32_t nticks; in mv_delay() local
312 nticks = ((timer_softc->config->clock_src / 1000000 + 1) * usec); in mv_delay()
314 while (nticks > 0) { in mv_delay()
317 nticks -= (val - val_temp); in mv_delay()
319 nticks -= (val + (INITIAL_TIMECOUNTER - val_temp)); in mv_delay()