/external/chromium_org/third_party/WebKit/Source/web/default/ |
WebRenderTheme.cpp | 42 void setCaretBlinkInterval(double interval) 44 RenderThemeChromiumDefault::setCaretBlinkInterval(interval);
|
/external/chromium_org/ui/compositor/ |
compositor_vsync_manager.cc | 16 base::TimeDelta interval) { 21 authoritative_vsync_interval_ = interval; 22 last_interval_ = interval; 24 NotifyObservers(timebase, interval); 28 base::TimeDelta interval) { 32 interval = authoritative_vsync_interval_; 34 last_interval_ = interval; 36 NotifyObservers(timebase, interval); 41 base::TimeDelta interval; local 45 interval = last_interval_ [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/ |
stw_ext_swapinterval.c | 44 wglSwapIntervalEXT(int interval) 46 (void) interval; 47 debug_printf("%s: %d\n", __FUNCTION__, interval);
|
/external/mesa3d/src/gallium/state_trackers/wgl/ |
stw_ext_swapinterval.c | 44 wglSwapIntervalEXT(int interval) 46 (void) interval; 47 debug_printf("%s: %d\n", __FUNCTION__, interval);
|
/art/compiler/optimizing/ |
live_interval_test.cc | 31 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 32 ASSERT_EQ(0u, interval->GetStart()); 37 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 38 ASSERT_EQ(4u, interval->GetStart()); 48 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 49 ASSERT_TRUE(interval->IsDeadAt(42)); 50 ASSERT_TRUE(interval->IsDeadAt(43)); 51 ASSERT_FALSE(interval->IsDeadAt(41)); 52 ASSERT_FALSE(interval->IsDeadAt(0)); 53 ASSERT_FALSE(interval->IsDeadAt(22)) 58 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 76 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 86 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 197 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 208 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 219 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 230 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 241 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 252 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 263 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local 274 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator); local [all...] |
optimizing_unit_test.h | 43 LiveInterval* interval = new (allocator) LiveInterval(allocator, Primitive::kPrimInt); local 45 interval->AddRange(ranges[i - 1][0], ranges[i - 1][1]); 47 interval->SetRegister(reg); 48 return interval;
|
/system/core/init/ |
watchdogd.c | 33 int interval = 10; local 43 interval = atoi(argv[1]); 48 timeout = interval + margin; 64 interval = timeout - margin; 66 interval = 1; 67 ERROR("watchdogd: Adjusted interval to timeout returned by driver: timeout %d, interval %d, margin %d\n", 68 timeout, interval, margin); 74 sleep(interval);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
ShapeInterval.h | 70 bool overlaps(const ShapeInterval<T>& interval) const 72 if (isUndefined() || interval.isUndefined()) 74 return x2() >= interval.x1() && x1() <= interval.x2(); 77 bool contains(const ShapeInterval<T>& interval) const 79 if (isUndefined() || interval.isUndefined()) 81 return x1() <= interval.x1() && x2() >= interval.x2(); 87 void unite(const ShapeInterval<T>& interval) 89 if (interval.isUndefined() [all...] |
/external/deqp/framework/delibs/deutil/ |
deTimerTest.c | 57 int interval = minInterval + (int)(deRandom_getUint32(&rnd) % (deUint32)(maxInterval-minInterval+1)); local 61 printf("Iter %d / %d: %d ms %s timer\n", iter+1, numIters, interval, (isSingle ? "single" : "interval")); 65 scheduleOk = deTimer_scheduleSingle(timer, interval); 67 scheduleOk = deTimer_scheduleInterval(timer, interval); 71 deSleep(interval*intervalSleepMultiplier); 73 deSleep(interval);
|
/external/iproute2/tc/ |
tc_estimator.c | 28 for (est->interval=0; est->interval<=5; est->interval++) { 29 if (A <= (1<<est->interval)*(TIME_UNITS_PER_SEC/4)) 32 if (est->interval > 5) 34 est->interval -= 2;
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/ |
sctop-report | 3 # args: [comm] [interval] 13 echo "usage: sctop-report [comm] [interval]" 18 interval=$2 21 interval=$1 24 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval
|
/external/chromium_org/cc/test/ |
scheduler_test_common.h | 32 base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner) { 33 return make_scoped_refptr(new FakeDelayBasedTimeSource(interval, 41 FakeDelayBasedTimeSource(base::TimeDelta interval, 43 : DelayBasedTimeSource(interval, task_runner) {}
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/ |
rwtop-report | 3 # args: [interval] 13 echo "usage: rwtop-report [interval]" 17 interval=$1 20 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rwtop.pl $interval
|
/external/lldb/test/expression_command/timeout/ |
wait-a-while.c | 7 wait_a_while (useconds_t interval) 14 uint64_t target = start_time.tv_sec * 1000000 + start_time.tv_usec + interval; 19 return_value = usleep (interval); 24 interval = target - now.tv_sec * 1000000 + now.tv_usec;
|
/external/qemu/distrib/sdl-1.2.15/include/ |
SDL_timer.h | 55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval); 59 * elapsed. The callback function is passed the current timer interval 60 * and returns the next timer interval. If the returned value is the 86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback); 96 * The callback function is passed the current timer interval and returns 97 * the next timer interval. If the returned value is the same as the one 101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param); 109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
|
/prebuilts/tools/darwin-x86/sdl/include/SDL/ |
SDL_timer.h | 55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval); 59 * elapsed. The callback function is passed the current timer interval 60 * and returns the next timer interval. If the returned value is the 86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback); 96 * The callback function is passed the current timer interval and returns 97 * the next timer interval. If the returned value is the same as the one 101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param); 109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
|
/prebuilts/tools/linux-x86/sdl/include/SDL/ |
SDL_timer.h | 55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval); 59 * elapsed. The callback function is passed the current timer interval 60 * and returns the next timer interval. If the returned value is the 86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback); 96 * The callback function is passed the current timer interval and returns 97 * the next timer interval. If the returned value is the same as the one 101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param); 109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
|
/prebuilts/tools/windows/sdl/include/SDL/ |
SDL_timer.h | 55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval); 59 * elapsed. The callback function is passed the current timer interval 60 * and returns the next timer interval. If the returned value is the 86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback); 96 * The callback function is passed the current timer interval and returns 97 * the next timer interval. If the returned value is the same as the one 101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param); 109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
autoscan_exponential.c | 19 int interval; member in struct:autoscan_exponential_data 84 if (data->interval >= data->limit) 87 if (data->interval <= 0) 88 data->interval = data->base; 90 data->interval = data->interval * data->base; 91 if (data->interval > data->limit) 95 return data->interval;
|
/external/chromium_org/cc/output/ |
begin_frame_args.cc | 14 interval(base::TimeDelta::FromMicroseconds(-1)) { 19 base::TimeDelta interval) 22 interval(interval) 27 base::TimeDelta interval) { 28 return BeginFrameArgs(frame_time, deadline, interval); 36 state->SetDouble("interval_us", interval.InMicroseconds()); 43 // so we set the deadline to 0 and guess that the interval is 16 milliseconds.
|
/external/easymock/src/org/easymock/internal/ |
Results.java | 48 Range interval = ranges.get(i);
local 49 if (interval.hasOpenCount()) {
53 currentPosition += interval.getMaximum();
74 for (Range interval : ranges) {
75 min += interval.getMinimum();
76 if (interval.hasOpenCount() || max == Integer.MAX_VALUE) {
79 max += interval.getMaximum();
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/ |
sctop.py | 7 # [comm] are displayed. If an [interval] arg is specified, the display 8 # will be refreshed every [interval] seconds. The default interval is 20 usage = "perf script -s sctop.py [comm] [interval]\n"; 24 interval = default_interval variable 31 interval = int(sys.argv[2]) variable 34 interval = int(sys.argv[1]) variable 37 interval = default_interval variable 42 thread.start_new_thread(print_syscall_totals, (interval,)) 56 def print_syscall_totals(interval) [all...] |
/external/chromium_org/cc/scheduler/ |
delay_based_time_source.h | 26 // This timer implements a time source that achieves the specified interval 33 base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner); 39 base::TimeDelta interval); 55 DelayBasedTimeSource(base::TimeDelta interval, 66 Parameters(base::TimeDelta interval, base::TimeTicks tick_target) 67 : interval(interval), tick_target(tick_target) {} 68 base::TimeDelta interval; member in struct:cc::DelayBasedTimeSource::Parameters 96 base::TimeDelta interval, base::SingleThreadTaskRunner* task_runner); 101 DelayBasedTimeSourceHighRes(base::TimeDelta interval, [all...] |
/bionic/libc/kernel/uapi/linux/netfilter/ |
xt_RATEEST.h | 25 __s8 interval; member in struct:xt_rateest_target_info
|
/development/ndk/platforms/android-L/include/linux/netfilter/ |
xt_RATEEST.h | 25 __s8 interval; member in struct:xt_rateest_target_info
|