HomeSort by relevance Sort by last modified time
    Searched refs:interval (Results 126 - 150 of 608) sorted by null

1 2 3 4 56 7 8 91011>>

  /art/compiler/optimizing/
register_allocator_graph_color.h 61 * However, we split the node's live interval in order to make the interference graph
69 * - We look for coalesce opportunities by examining each live interval, a step similar to that
109 // the interval and assign the register to the first part.
112 // Add all applicable safepoints to a live interval.
120 // If a safe point is needed, add a synthesized interval to later record
124 // Split an interval, but only if `position` is inside of `interval`.
125 // Return either the new interval, or the original interval if not split.
126 static LiveInterval* TrySplit(LiveInterval* interval, size_t position)
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
concat_map.cpp 12 rxcpp::observable<>::interval(std::chrono::steady_clock::now() + std::chrono::milliseconds(10 * v), std::chrono::milliseconds(50)).
35 rxcpp::observable<>::interval(std::chrono::steady_clock::now() + std::chrono::milliseconds(10 * v), std::chrono::milliseconds(50)).
delay.cpp 19 auto values = rxcpp::observable<>::interval(start, period, scheduler).
21 tap(next("interval")).
44 auto values = rxcpp::observable<>::interval(start, period, scheduler).
46 tap(next("interval")).
flat_map.cpp 12 rxcpp::observable<>::interval(std::chrono::steady_clock::now() + std::chrono::milliseconds(10 * v), std::chrono::milliseconds(50)).
35 rxcpp::observable<>::interval(std::chrono::steady_clock::now() + std::chrono::milliseconds(10 * v), std::chrono::milliseconds(50)).
replay.cpp 10 auto values = rxcpp::observable<>::interval(std::chrono::milliseconds(50), rxcpp::observe_on_new_thread()).
36 auto values = rxcpp::observable<>::interval(std::chrono::milliseconds(50)).
67 auto values = rxcpp::observable<>::interval(std::chrono::milliseconds(50), rxcpp::observe_on_new_thread()).
93 auto values = rxcpp::observable<>::interval(std::chrono::milliseconds(50)).
124 auto values = rxcpp::observable<>::interval(std::chrono::milliseconds(50), rxcpp::observe_on_new_thread()).
150 auto values = rxcpp::observable<>::interval(std::chrono::milliseconds(50)).
181 auto values = rxcpp::observable<>::interval(std::chrono::milliseconds(50), rxcpp::observe_on_new_thread()).
207 auto values = rxcpp::observable<>::interval(std::chrono::milliseconds(50)).
skip_until.cpp 8 auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7);
23 auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7).map([](long v){
time_interval.cpp 12 auto values = rxcpp::observable<>::interval(milliseconds(100))
41 auto values = interval(milliseconds(100))
timestamp.cpp 12 auto values = rxcpp::observable<>::interval(milliseconds(100))
42 auto values = interval(milliseconds(100))
  /external/iproute2/tc/
q_fq_codel.c 54 fprintf(stderr, " [ target TIME ] [ interval TIME ]\n");
65 unsigned int interval = 0; local
109 } else if (strcmp(*argv, "interval") == 0) {
111 if (get_time(&interval, *argv)) {
112 fprintf(stderr, "Illegal \"interval\"\n");
138 if (interval)
139 addattr_l(n, 1024, TCA_FQ_CODEL_INTERVAL, &interval, sizeof(interval));
160 unsigned int interval; local
201 interval = rta_getattr_u32(tb[TCA_FQ_CODEL_INTERVAL])
    [all...]
  /external/ltp/tools/
restore_kernel_faults_default.sh 44 echo 1 > /sys/kernel/debug/fail_io_timeout/interval
56 echo 1 > /sys/kernel/debug/fail_make_request/interval
71 echo 1 > /sys/kernel/debug/fail_page_alloc/interval
84 echo 1 > /sys/kernel/debug/failslab/interval
  /external/pdfium/testing/
embedder_test_timer_handling_delegate.h 27 int interval; member in struct:EmbedderTestTimerHandlingDelegate::Timer
71 std::pair<int, Timer>(fake_elapsed_msecs_ + t.interval, t));
  /external/webrtc/webrtc/tools/frame_editing/
frame_editing.cc 25 " --in_path=input.yuv --width=320 --height=240 --f=60 --interval=1 --l=120"
37 "--interval(int): Interval specifies with what ratio the number of frames "
39 "If you set <interval> to a positive number, frames between <f> and <l> "
40 "will be inserted <interval> times."
41 " If you set <interval> to a negative number then the amount of frames "
42 "between <f> and <l> will be decreased with a ratio of abs(interval)."
43 " Set interval=-1 if every frame between <f> and <l> should be "
44 "deleted. Set interval=-2 if every second frame should be deleted, and so "
46 " number n where (n - 1) % interval == 0 will be kept.\n
88 int interval = strtol((parser.GetFlag("interval")).c_str(), NULL, 10); local
    [all...]
  /external/u-boot/drivers/usb/musb-new/
musb_uboot.c 35 struct devrequest *setup, int interval)
60 urb->ep->desc.bInterval = interval;
113 void *buffer, int len, int interval)
116 buffer, len, NULL, interval);
122 int elementsize, void *buffer, int interval)
142 pipe, buffer, elementsize, NULL, interval);
271 void *buffer, int length, int interval)
273 return _musb_submit_int_msg(&musb_host, dev, pipe, buffer, length, interval);
278 void *buffer, int interval)
281 buffer, interval);
    [all...]
  /external/autotest/server/site_tests/enterprise_LongevityTrackerServer/
enterprise_longevity_helper.py 130 def modulo_time(timer, interval):
132 Get time eplased on |timer| for the |interval| modulus.
135 synchronized with the current interval.
138 @param interval: period of time in seconds.
140 @returns time elapsed from the start of the current interval.
143 return timer % int(interval)
146 def syncup_time(timer, interval):
148 Get time remaining on |timer| for the |interval| modulus.
154 @param interval: period of time in seconds.
156 @returns time remaining till the end of the current interval
    [all...]
  /external/iputils/
ping_common.c 26 int interval = 1000; /* interval between packets (msec) */ variable
285 fprintf(stderr, "ping: bad timing interval\n");
289 interval = (int)(dbl * 1000);
424 if (waittime < 1000*interval)
425 waittime = 1000*interval;
442 int est = rtt ? rtt/8 : interval*1000;
444 interval = (est+rtt_addend+500)/1000;
445 if (uid && interval < MINUSERINTERVAL)
446 interval = MINUSERINTERVAL
    [all...]
  /external/autotest/client/common_lib/cros/network/
ping_runner.py 67 if ping_config.interval is not None:
68 args.append('-i %f' % ping_config.interval)
153 if ping_config.interval is not None:
154 args.append('-i %f' % ping_config.interval)
241 interval=None, qos=None,
247 self.interval = interval
253 interval_seconds = self.interval or 1
320 ping_config = PingConfig(host_name, count=3, interval=0.5,
  /external/libunwind/tests/
test-async-sig.c 45 struct itimerval interval = variable in typeref:struct:itimerval
160 setitimer (ITIMER_VIRTUAL, &interval, NULL);
179 setitimer (ITIMER_VIRTUAL, &interval, NULL);
  /external/linux-kselftest/tools/testing/selftests/timers/
raw_skew.c 95 long long delta1, delta2, interval, eppm, ppm; local
123 interval = diff_timespec(start, end);
126 eppm = ((delta2-delta1)*NSEC_PER_SEC)/interval;
  /external/tensorflow/tensorflow/contrib/session_bundle/
gc.py 107 n: interval size.
110 A filter function that keeps exactly one path from each interval
112 interval the largest is kept.
115 keeper_map = {} # map from interval to largest path seen in that interval
120 # Find the interval (with a special case to map export_version = 0 to
121 # interval 0.
122 interval = math.floor(
124 existing = keeper_map.get(interval, None)
126 keeper_map[interval] =
    [all...]
  /external/jemalloc_new/src/
background_thread.c 100 /* Minimal sleep interval 100 ms. */
104 decay_npurge_after_interval(arena_decay_t *decay, size_t interval) {
107 for (i = 0; i < interval; i++) {
111 sum += decay->backlog[i] * (h_steps[i] - h_steps[i - interval]);
121 /* Use minimal interval if decay is contended. */
125 uint64_t interval;
129 interval = BACKGROUND_THREAD_INDEFINITE_SLEEP;
133 uint64_t decay_interval_ns = nstime_ns(&decay->interval);
145 interval = BACKGROUND_THREAD_INDEFINITE_SLEEP;
150 /* Use max interval. *
    [all...]
  /external/u-boot/drivers/usb/host/
xhci.c 104 /* ss_bmAttributes: 1 packet per service interval */
267 unsigned int interval; local
269 interval = fls(desc_interval) - 1;
270 interval = clamp_val(interval, min_exponent, max_exponent);
271 if ((1 << interval) != desc_interval)
272 debug("rounding interval to %d microframes, "\
274 1 << interval, desc_interval);
276 return interval;
295 * Convert interval expressed as 2^(bInterval - 1) == interval int
301 unsigned int interval; local
333 unsigned int interval = 0; local
509 unsigned int interval; local
    [all...]
  /external/webrtc/talk/media/base/
videocapturer_unittest.cc 347 EXPECT_EQ(cricket::VideoFormat::FpsToInterval(30), best.interval);
365 EXPECT_EQ(cricket::VideoFormat::FpsToInterval(30), best.interval);
373 EXPECT_EQ(cricket::VideoFormat::FpsToInterval(30), best.interval);
381 EXPECT_EQ(cricket::VideoFormat::FpsToInterval(30), best.interval);
389 EXPECT_EQ(cricket::VideoFormat::FpsToInterval(30), best.interval);
397 EXPECT_EQ(cricket::VideoFormat::FpsToInterval(30), best.interval);
423 EXPECT_EQ(cricket::VideoFormat::FpsToInterval(24), best.interval);
427 desired.interval = cricket::VideoFormat::FpsToInterval(30);
432 EXPECT_EQ(cricket::VideoFormat::FpsToInterval(24), best.interval);
436 desired.interval = cricket::VideoFormat::FpsToInterval(30)
    [all...]
  /bionic/libc/kernel/uapi/linux/hdlc/
ioctl.h 79 unsigned int interval; member in struct:__anon635
  /cts/tests/tests/batterysaving/apps/app_target_api_current/src/android/os/cts/batterysaving/app/
CommReceiver.java 97 final long interval = req.getRepeatInterval(); local
104 + ", interval=" + interval + ", allowWhileIdle=" + allowWhileIdle);
105 if (interval > 0) {
106 am.setRepeating(type, triggerTime, interval, alarmSender);
  /external/Reactive-Extensions/RxCpp/Rx/v2/examples/stop/
main.cpp 38 rx::observable<>::interval(std::chrono::milliseconds(300))

Completed in 669 milliseconds

1 2 3 4 56 7 8 91011>>