HomeSort by relevance Sort by last modified time
    Searched defs:nticks (Results 1 - 2 of 2) sorted by null

  /external/jemalloc/include/jemalloc/internal/
ticker.h 12 int32_t nticks; member in struct:ticker_s
24 void ticker_init(ticker_t *ticker, int32_t nticks);
27 bool ticker_ticks(ticker_t *ticker, int32_t nticks);
33 ticker_init(ticker_t *ticker, int32_t nticks)
36 ticker->tick = nticks;
37 ticker->nticks = nticks;
55 ticker_ticks(ticker_t *ticker, int32_t nticks)
58 if (unlikely(ticker->tick < nticks)) {
59 ticker->tick = ticker->nticks;
    [all...]
  /external/jemalloc_new/include/jemalloc/internal/
ticker.h 8 * 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:__anon25146
20 ticker_init(ticker_t *ticker, int32_t nticks) {
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) {
    [all...]

Completed in 308 milliseconds