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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/tools/
freebsd-tick-processor 3 # A wrapper script to call 'linux-tick-processor'.
10 $tools_path/linux-tick-processor "$@"
mac-tick-processor 3 # A wrapper script to call 'linux-tick-processor' with Mac-specific settings.
6 $tools_path/linux-tick-processor --mac --nm=$tools_path/mac-nm $@
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
app.h 48 extern void appRender(long tick, int width, int height);
  /frameworks/native/opengl/tests/angeles/
app.h 43 extern void appRender(long tick, int width, int height);
  /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;
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKClock_Tick.java 76 * Test tick clock.
88 Clock test = Clock.tick(Clock.fixed(ZDT.withNano(i * 1000_000).toInstant(), PARIS), Duration.ofMillis(250));
96 Clock test = Clock.tick(Clock.fixed(ZDT.withNano(i * 1000).toInstant(), PARIS), Duration.ofNanos(250_000));
104 Clock test = Clock.tick(Clock.fixed(ZDT.withNano(i).toInstant(), PARIS), Duration.ofNanos(20));
112 Clock test = Clock.tick(underlying, Duration.ZERO);
118 Clock test = Clock.tick(underlying, Duration.ofNanos(1));
124 Clock.tick(Clock.systemUTC(), Duration.ofSeconds(Long.MAX_VALUE));
129 Clock.tick(Clock.systemUTC(), Duration.ofSeconds(0, 123));
134 Clock.tick(Clock.systemUTC(), Duration.ofSeconds(0, 999));
139 Clock.tick(Clock.systemUTC(), Duration.ofSeconds(0, 999_999_999))
    [all...]
  /packages/services/Car/tests/carservice_unit_test/src/com/android/car/
UptimeTrackerTest.java 37 MockTimeInterface tick() { method in class:UptimeTrackerTest.MockTimeInterface
73 timeInterface.incrementTime(5000).tick(); method
76 timeInterface.tick();
79 timeInterface.incrementTime(1000).tick(); method
82 timeInterface.incrementTime(400).tick(); method
96 timeInterface.incrementTime(5000).tick(); method
99 timeInterface.incrementTime(1000).tick(); method
113 timeInterface.incrementTime(5000).tick(); method
116 timeInterface.incrementTime(500).tick(); method
123 timeInterface.incrementTime(3000).tick(); method
    [all...]
  /external/ipsec-tools/src/racoon/
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...]
schedule.h 54 time_t tick; /* for debug */ member in struct:sched
75 time_t tick; member in struct:scheddump
  /external/curl/src/
tool_cb_prg.c 72 pos = sinus[bar->tick%200] / (10000 / check);
74 pos = sinus[(bar->tick + 5)%200] / (10000 / check);
76 pos = sinus[(bar->tick + 10)%200] / (10000 / check);
78 pos = sinus[(bar->tick + 15)%200] / (10000 / check);
82 bar->tick += 2;
83 if(bar->tick >= 200)
84 bar->tick -= 200;
230 bar->tick = 150;
tool_cb_prg.h 36 unsigned int tick; member in struct:ProgressData
  /external/linux-kselftest/tools/testing/selftests/timers/
adjtick.c 1 /* adjtimex() tick adjustment test
128 tx1.tick = tickval;
135 printf("Estimating tick (act: %ld usec, %lld ppm): ", tickval, ppm);
143 if (tx1.offset || tx1.freq || tx1.tick != tickval) {
152 * cannot match the HZ tick size accurately, so we have a
170 long tick, max, interval, err; local
188 for (tick = (systick - max); tick < (systick + max); tick += interval) {
189 if (check_tick_adj(tick)) {
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/
TestClock_Tick.java 75 * Test tick clock.
86 Clock test = Clock.tick(Clock.system(PARIS), Duration.ofMillis(500));
93 Clock test = Clock.tick(Clock.systemUTC(), Duration.ofMillis(500));
  /prebuilts/ndk/r16/sources/android/ndk_helper/
perfMonitor.cpp 52 double tick = time - last_tick_; local
53 double d = UpdateTick( 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:__anon35134
eas_tcdata.h 50 EAS_I32 tick; /* tick based on current tempo and resolution */ member in struct:__anon35137
eas_imelodydata.h 55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */ member in struct:__anon35117
eas_otadata.h 62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */ member in struct:__anon35124
  /external/skia/experimental/sksg/
SkSGScene.cpp 21 void Animator::tick(float t) { function in class:sksg::Animator
30 a->tick(t);
66 anim->tick(t);
  /external/skqp/experimental/sksg/
SkSGScene.cpp 21 void Animator::tick(float t) { function in class:sksg::Animator
30 a->tick(t);
66 anim->tick(t);
  /external/toybox/toys/example/
demo_scankey.c 24 unsigned width, height, tick; local
28 t[0] = t[1] = x = tick = 0;
41 t[1&++tick] = time(0);
  /external/google-benchmark/src/
cycleclock.h 95 int64_t tick;
97 asm("mov %%g1, %0" : "=r"(tick));
98 return tick;
  /external/libcxx/utils/google-benchmark/src/
cycleclock.h 95 int64_t tick;
97 asm("mov %%g1, %0" : "=r"(tick));
98 return tick;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
cycleclock.h 95 int64_t tick;
97 asm("mov %%g1, %0" : "=r"(tick));
98 return tick;
  /external/iproute2/tc/
tc_core.h 18 unsigned tc_core_tick2time(unsigned tick);

Completed in 370 milliseconds

1 2 3 4 5 6 7 8 91011>>