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

/freebsd-13-stable/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:__anon915
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-13-stable/sys/powerpc/powerpc/
H A Dclock.c126 int nticks = 0; local
150 nticks++;
154 nticks = 1;
161 while (nticks-- > 0) {
/freebsd-13-stable/sys/arm/mv/
H A Dtimer.c314 int32_t nticks; local
317 nticks = ((timer_softc->config->clock_src / 1000000 + 1) * usec);
319 while (nticks > 0) {
322 nticks -= (val - val_temp);
324 nticks -= (val + (INITIAL_TIMECOUNTER - val_temp));

Completed in 59 milliseconds