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

/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dticker.h24 void ticker_init(ticker_t *ticker, int32_t nticks);
25 void ticker_copy(ticker_t *ticker, const ticker_t *other);
26 int32_t ticker_read(const ticker_t *ticker);
27 bool ticker_ticks(ticker_t *ticker, int32_t nticks);
28 bool ticker_tick(ticker_t *ticker);
33 ticker_init(ticker_t *ticker, int32_t nticks) argument
36 ticker->tick = nticks;
37 ticker->nticks = nticks;
41 ticker_copy(ticker_t *ticker, const ticker_t *other) argument
44 *ticker
48 ticker_read(const ticker_t *ticker) argument
55 ticker_ticks(ticker_t *ticker, int32_t nticks) argument
67 ticker_tick(ticker_t *ticker) argument
[all...]
/freebsd-11-stable/lib/libc/stdlib/jemalloc/
H A DMakefile.inc8 tcache.c ticker.c tsd.c util.c witness.c
/freebsd-11-stable/sys/cam/
H A Dcam_iosched.c268 struct callout ticker; /* Callout for our quota system */ member in struct:cam_iosched_softc
513 callout_reset(&isc->ticker, hz / isc->quanta, cam_iosched_ticker, isc);
751 callout_stop(&isc->ticker);
756 callout_reset(&isc->ticker, hz / isc->quanta, cam_iosched_ticker, isc);
992 callout_init_mtx(&(*iscp)->ticker, cam_periph_mtx(periph), 0);
995 callout_reset(&(*iscp)->ticker, hz / (*iscp)->quanta, cam_iosched_ticker, *iscp);
1021 callout_drain(&isc->ticker);
/freebsd-11-stable/contrib/gcc/
H A Dgenautomata.c134 /* The following structure describes a ticker. */
135 struct ticker struct
137 /* The following member value is time of the ticker creation with
138 taking into account time when the ticker is off. Active time of
139 the ticker is current time minus the value. */
142 ticker was off. Zero value means that now the ticker is on. */
146 /* The ticker is represented by the following type. */
147 typedef struct ticker ticker_t;
3008 /* The page contains abstract data `ticker'
3007 ticker_t ticker; local
3016 ticker_off(ticker_t *ticker) argument
3024 ticker_on(ticker_t *ticker) argument
3037 active_time(ticker_t ticker) argument
3062 print_active_time(FILE *f, ticker_t ticker) argument
[all...]

Completed in 119 milliseconds