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

/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dticker.h8 * ticker_init the ticker to trigger every nticks events. You then notify it
9 * that an event has occurred with calls to ticker_tick (or that nticks events
16 int32_t nticks; member in struct:__anon839
20 ticker_init(ticker_t *ticker, int32_t nticks) { argument
21 ticker->tick = nticks;
22 ticker->nticks = nticks;
38 * ticker->tick -= nticks;
60 ticker->tick = ticker->nticks;
65 ticker_ticks(ticker_t *ticker, int32_t nticks) { argument
[all...]
H A Darena_inlines_b.h113 arena_decay_ticks(tsdn_t *tsdn, arena_t *arena, unsigned nticks) { argument
125 if (unlikely(ticker_ticks(decay_ticker, nticks))) {
/freebsd-current/sys/powerpc/powerpc/
H A Dclock.c123 int nticks = 0; local
147 nticks++;
151 nticks = 1;
158 while (nticks-- > 0) {
/freebsd-current/sys/arm/mv/
H A Dtimer.c309 int32_t nticks; local
312 nticks = ((timer_softc->config->clock_src / 1000000 + 1) * usec);
314 while (nticks > 0) {
317 nticks -= (val - val_temp);
319 nticks -= (val + (INITIAL_TIMECOUNTER - val_temp));

Completed in 135 milliseconds