HomeSort by relevance Sort by last modified time
    Searched defs:tick (Results 1 - 25 of 305) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jemalloc/include/jemalloc/internal/
ticker.h 11 int32_t tick; member in struct:ticker_s
36 ticker->tick = nticks;
51 return (ticker->tick);
58 if (unlikely(ticker->tick < nticks)) {
59 ticker->tick = ticker->nticks;
62 ticker->tick -= nticks;
  /prebuilts/ndk/r11/sources/android/ndk_helper/
perfMonitor.cpp 52 double tick = time - last_tick_; local
53 double d = UpdateTick( tick );
  /prebuilts/ndk/r13/sources/android/ndk_helper/
perfMonitor.cpp 52 double tick = time - last_tick_; local
53 double d = UpdateTick( tick );
  /external/autotest/client/tests/cgroup/
cgroup.py 305 def tick(self): member in class:cgroup.test_cpuset.per_cpu_load
307 Reload values and returns the load between the last tick/reload
391 s1 = stats.tick()[1:]
407 s1 = stats.tick()[1:]
  /external/ipsec-tools/src/racoon/
schedule.h 54 time_t tick; /* for debug */ member in struct:sched
75 time_t tick; member in struct:scheddump
schedule.c 127 sched_new(tick, func, param)
128 time_t tick;
145 new->tick = tick;
147 new->xtime = current_time() + tick;
260 dst->tick = p->tick;
295 test(tick)
296 int *tick;
298 printf("execute %d\n", *tick);
305 int *tick; local
    [all...]
  /external/toybox/toys/example/
test_scankey.c 24 unsigned width, height, tick; local
28 t[0] = t[1] = x = tick = 0;
41 t[1&++tick] = time(0);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/targets/
Target03.java 69 public void tick() { method in class:Target03
138 tick(); method
151 t.tick();
  /external/sonivox/arm-wt-22k/lib_src/
eas_rtttldata.h 56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */ member in struct:__anon30035
eas_tcdata.h 50 EAS_I32 tick; /* tick based on current tempo and resolution */ member in struct:__anon30038
eas_imelodydata.h 55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */ member in struct:__anon30018
eas_otadata.h 62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */ member in struct:__anon30025
  /external/autotest/scheduler/
host_scheduler.py 193 back to the rdb through its tick, any other action must be instigated by
287 def tick(self): member in class:BaseHostScheduler
344 metrics.Counter('%s/tick' % _METRICS_PREFIX).increment()
387 def tick(self): member in class:HostScheduler
388 logging.info('Calling new tick.')
408 def tick(self): member in class:DummyHostScheduler
413 """Sigint handler so we don't crash mid-tick."""
491 host_scheduler.tick()
postjob_task.py 159 def tick(self): member in class:SelfThrottledPostJobTask
160 # override tick to keep trying to start until the process count goes
163 super(SelfThrottledPostJobTask, self).tick()
agent_task.py 10 schedulers tick has a method called handle_agents, which calls the
11 tick of each agent in the Dispatchers queue. This leads to the Agent
36 tick till we get an exit code
45 tick method. A started task will have the started bit set.
60 - tick: For as long as a started tasks done bit is not set, a poll will lead
61 to a tick. The tick monitors the pid file of the autoserv process
180 self.tick()
183 def tick(self): member in class:BaseAgentTask
  /external/autotest/scheduler/shard/
shard_client.py 336 def tick(self): member in class:ShardClient
339 metrics.Counter('chromeos/autotest/shard_client/tick').increment()
343 """Calls tick() until shutdown() is called."""
345 self.tick()
352 """Stops the shard client after the current tick."""
358 """Sigint handler so we don't crash mid-tick."""
  /external/guava/guava/src/com/google/common/base/
Stopwatch.java 174 long tick = ticker.read(); local
177 elapsedNanos += tick - startTick;
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Stopwatch.java 173 long tick = ticker.read(); local
176 elapsedNanos += tick - startTick;
  /external/strace/mpers-m32/
struct_timex.h 18 int32_t tick; member in struct:__anon30306
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_clock_test.cc 26 clk.tick();
58 vector1.tick();
74 thr1.tick();
76 thr2.tick();
91 vector.tick();
114 vector1.tick();
116 vector2.tick();
153 vector.tick();
167 vector1.tick();
169 vector2.tick();
261 void tick() { function in struct:__tsan::SimpleThreadClock
    [all...]
  /external/linux-kselftest/tools/testing/selftests/timers/
adjtick.c 1 /* adjtimex() tick adjustment test
139 tx1.tick = tickval;
146 printf("Estimating tick (act: %ld usec, %lld ppm): ", tickval, ppm);
154 if (tx1.offset || tx1.freq || tx1.tick != tickval) {
163 * cannot match the HZ tick size accurately, so we have a
181 long tick, max, interval, err; local
199 for (tick = (systick - max); tick < (systick + max); tick += interval) {
200 if (check_tick_adj(tick)) {
    [all...]
  /external/strace/mpers-mx32/
struct_timex.h 20 int64_t tick; member in struct:__anon30455
  /libcore/ojluni/src/main/java/java/time/
Clock.java 216 * It is equivalent to {@code tick(system(zone), Duration.ofSeconds(1))}.
239 * It is equivalent to {@code tick(system(zone), Duration.ofMinutes(1))}.
252 * This clock will only tick as per the specified duration. Thus, if the duration
255 * The tick duration must be positive. If it has a part smaller than a whole
257 * leaving a remainder. All normal tick durations will match these criteria,
272 * @param tickDuration the duration of each visible tick, not negative, not null
279 public static Clock tick(Clock baseClock, Duration tickDuration) { method in class:Clock
283 throw new IllegalArgumentException("Tick duration must not be negative");
291 throw new IllegalArgumentException("Invalid tick duration");
  /libcore/ojluni/src/test/java/time/tck/java/time/serial/
TCKClockSerialization.java 105 assertSerializable(Clock.tick(Clock.fixed(INSTANT, PARIS), AMOUNT));
  /system/keymaster/
keymaster_enforcement_test.cpp 61 void tick(unsigned seconds = 1) { current_time_ += seconds; } function in class:keymaster::test::TestKeymasterEnforcement
306 kmen.tick(2);
322 kmen.tick();
325 kmen.tick();
340 kmen.tick();
348 kmen.tick();
359 kmen.tick();
374 kmen.tick();
389 kmen.tick();
403 kmen.tick(4)
    [all...]

Completed in 776 milliseconds

1 2 3 4 5 6 7 8 91011>>