HomeSort by relevance Sort by last modified time
    Searched refs:nticks (Results 1 - 5 of 5) 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...]
arena.h 652 void arena_decay_ticks(tsd_t *tsd, arena_t *arena, unsigned nticks);
    [all...]
  /external/fio/
tickmarks.h 9 int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm,
tickmarks.c 42 static void shorten(struct tickmark *tm, int nticks, int *power_of_ten,
50 for (i = 0; i < nticks; i++) {
81 for (i = 0; i < nticks; i++) {
90 int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm,
102 d = nicenum(range / (nticks - 1), 1);
125 int nticks, i;
129 nticks = calc_tickmarks(x, y, 10, &tm);
131 for (i = 0; i < nticks; i++)
graph.c 315 double minx, double maxx, int nticks, int add_tm_text)
322 nticks = calc_tickmarks(minx, maxx, nticks, &tm, &power_of_ten,
327 for (i = 0; i < nticks; i++) {
371 double miny, double maxy, int nticks, int add_tm_text)
378 nticks = calc_tickmarks(miny, maxy, nticks, &tm, &power_of_ten,
388 maxy = tm[nticks - 1].value;
390 for (i = 0; i < nticks; i++) {

Completed in 365 milliseconds