HomeSort by relevance Sort by last modified time
    Searched full:interval (Results 476 - 500 of 3257) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/math/
frexp.go 10 // with the absolute value of frac in the interval [½, 1).
  /prebuilts/go/linux-x86/src/math/
frexp.go 10 // with the absolute value of frac in the interval [½, 1).
  /system/update_engine/update_manager/
chromeos_policy.h 121 // Default update check timeout interval/fuzz values used to compute the
129 // Maximum update attempt backoff interval and fuzz.
148 // Returns a TimeDelta based on the provided |interval| seconds +/- half
151 static base::TimeDelta FuzzedInterval(PRNG* prng, int interval, int fuzz);
  /external/autotest/client/common_lib/cros/network/
ping_runner.py 26 if self.interval is not None:
27 args.append('-i %f' % self.interval)
46 interval=None, qos=None,
52 self.interval = interval
58 interval_seconds = self.interval or 1
199 interval=0.5, ignore_result=True,
  /external/blktrace/btt/
args.c 155 .name = "iostat-interval",
228 "[ -S <interval> | --iostat-interval=<interval> ]\n" \
352 unsigned int interval; local
354 sscanf(optarg, "%u", &interval);
355 iostat_interval = (__u64)interval * 1000000000LL;
  /external/deqp/framework/delibs/deutil/
deTimer.c 285 TIMERSTATE_INTERVAL = 0, /*!< Active interval timer. */
298 int interval; /*!< Timer interval. */ member in struct:deTimerThread_s
335 sleepTime = thread->interval - (int)(((deInt64)deGetMicroseconds()-lastCallback)/1000);
355 static deTimerThread* deTimerThread_create (deTimerCallback callback, void* arg, int interval, TimerState state)
366 thread->interval = interval;
  /external/webrtc/talk/media/devices/
filevideocapturer.cc 207 // the frame interval to kMinimumInterval here. In Start(), if the capture
208 // format's interval is greater than kMinimumInterval, we use the interval;
209 // otherwise, we use the timestamp in the file to control the interval.
366 // If the capture format's interval is not kMinimumInterval, we use it to
371 GetCaptureFormat()->interval > VideoFormat::kMinimumInterval
372 ? GetCaptureFormat()->interval
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
nrf8001-helloworld.cxx 61 * Current connection interval, slave latency and link supervision timeout
156 Connection interval min: 2 bytes
157 Connection interval max: 2 bytes
238 lib_aci_connect(0/* in seconds : 0 means forever */, 0x0050 /* advertising interval 50ms*/);
286 printf ("Evt link connection interval changed \n");
295 lib_aci_connect(0/* in seconds : 0 means forever */, 0x0050 /* advertising interval 50ms*/);
335 lib_aci_connect(0/* in seconds, 0 means forever */, 0x0050 /* advertising interval 50ms*/);
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/link/20131115_234449-fw_1.0.AA-manual/
touch_firmware_report-link-fw_1.0.AA-complete-20140116_103446.log 166 S'average time interval (ms)'
180 S'max time interval (ms)'
200 S' average time interval (ms): 7.340958'
202 aS' max time interval (ms): 13.524000'
418 S' average time interval (ms): 7.177304'
420 aS' max time interval (ms): 9.004000'
630 S' average time interval (ms): 6.855971'
632 aS' max time interval (ms): 8.357000'
842 S' average time interval (ms): 7.046038'
844 aS' max time interval (ms): 14.478000
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_030025-fw_11.27-robot_sim/
touch_firmware_report-lumpy-fw_11.27-complete-20140116_103515.log 184 S'average time interval (ms)'
198 S'max time interval (ms)'
218 S' average time interval (ms): 8.805367'
220 aS' max time interval (ms): 9.213000'
423 S' average time interval (ms): 8.832500'
425 aS' max time interval (ms): 9.264000'
621 S' average time interval (ms): 8.900250'
623 aS' max time interval (ms): 9.261000'
822 S' average time interval (ms): 8.826943'
824 aS' max time interval (ms): 9.146000
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032659-fw_11.23-robot_sim/
touch_firmware_report-lumpy-fw_11.23-complete-20140116_103533.log 184 S'average time interval (ms)'
198 S'max time interval (ms)'
218 S' average time interval (ms): 9.665955'
220 aS' max time interval (ms): 10.152000'
423 S' average time interval (ms): 9.660450'
425 aS' max time interval (ms): 10.106000'
621 S' average time interval (ms): 9.578278'
623 aS' max time interval (ms): 18.768000'
822 S' average time interval (ms): 9.655792'
824 aS' max time interval (ms): 19.455000
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 1 //===-- LiveIntervalAnalysis.h - Live Interval Analysis ---------*- C++ -*-===//
12 // interval [i, j) is said to be a live interval for register v if there is no
15 // implementation intervals can have holes, i.e. an interval might look like
67 /// Live interval pointers for all the virtual registers.
125 // Interval creation.
127 assert(!hasInterval(Reg) && "Interval already exists!");
139 // Interval removal.
154 /// are added to the dead vector. Returns true if the interval may have been
422 /// have separated the interval into multiple connected components
    [all...]
  /external/v8/src/crankshaft/
lithium-allocator.h 118 // Representation of the non-empty interval [start,end[.
130 // Split this interval at the given position without effecting the
131 // live range that owns it. The interval must contain the position.
134 // If this interval intersects with other return smallest position
277 // Add a new interval or a new use position to this live range.
289 // Shorten the most recently added interval by setting a new start.
293 // True if target overlaps an existing interval.
443 // Split the given range in a position from the interval [start, end].
448 // Find a lifetime position in the interval [start, end] which
450 // loop covered by this interval or the latest possible position
    [all...]
  /external/v8/src/compiler/
register-allocator.cc 285 // Walk the positions, verifying that each is in an interval.
286 UseInterval* interval = first_interval_; local
290 CHECK_NOT_NULL(interval);
291 while (!interval->Contains(pos->pos()) && interval->end() != pos->pos()) {
292 interval = interval->next();
293 CHECK_NOT_NULL(interval);
302 for (UseInterval* interval = first_interval()->next(); interval != nullptr
1033 UseInterval* interval = new (zone) UseInterval(start, end); local
1040 UseInterval* interval = new (zone) UseInterval(start, end); local
1109 UseInterval* interval = range->first_interval(); local
    [all...]
greedy-allocator.cc 489 for (UseInterval* interval = range->first_interval(); interval != nullptr;
490 interval = interval->next()) {
491 LifetimePosition start = interval->start();
492 LifetimePosition end = interval->end();
493 // If the interval starts at instruction end, then the first instruction
494 // in the interval is the next one.
498 // If the interval ends in a gap or at instruction start, then the last
  /external/iproute2/man/man8/
lnstat.8 22 (which in fact are counters) before printing them. After each interval, only
45 .B \-i, \-\-interval <intv>
46 Set interval to 'intv' seconds.
70 Use an interval of 10 seconds.
236 Number of ignored garbage collection runs due to minimum GC interval not
  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 92 assert(MI && "Dead valno in interval");
99 // The copy destination must match the interval register.
120 assert(MI && "Dead valno in interval");
212 // If the live interval was already unspillable, leave it that way.
222 // If all of the definitions of the interval are re-materializable,
  /frameworks/base/core/java/android/os/
SystemClock.java 35 * as in a calendar or alarm clock application. Interval or elapsed
48 * mechanisms. This is the basis for most interval timing
52 * to be monotonic, and is suitable for interval timing when the
53 * interval does not span device sleep. Most methods that accept a
60 * for general purpose interval timing.
  /cts/tests/camera/src/android/hardware/camera2/cts/
SurfaceViewPreviewTest.java 250 Log.i(TAG, String.format("Frame interval avg during normal preview: %f ms, peak %f ms",
270 Log.i(TAG, String.format("Frame interval during prepare avg: %f ms, peak %f ms",
276 String.format("Camera %s: Preview peak frame interval affected by prepare " +
284 String.format("Camera %s: Preview average frame interval affected by prepare " +
308 Log.i(TAG, String.format("Frame interval with prepared stream added avg: %f ms, peak %f ms",
314 String.format("Camera %s: Preview peak frame interval affected by use of new " +
321 String.format("Camera %s: Preview average frame interval affected by use of new " +
422 * Measure the inter-frame interval based on SENSOR_TIMESTAMP for frameCount frames from the
423 * provided capture listener. If prevTimestamp is positive, it is used for the first interval
426 * Returns the mean interval in the first pair entry, and the largest interval in the secon
439 long interval = timestamp - prevTimestamp; local
    [all...]
  /external/v8/src/
fast-dtoa.cc 30 // outside the safe interval, or if we ctannot prove that it is closer to the
56 // The real w (* unit) must lie somewhere inside the interval
59 // Basically the buffer currently contains a number in the unsafe interval
96 // Anything that lies outside the unsafe interval is guaranteed not to round
98 // Anything that lies inside the safe interval is guaranteed to round to v
100 // If the number inside the buffer lies inside the unsafe interval but not
101 // inside the safe interval then we simply do not know and bail out (returning
110 // too_high) buffer that is still in the unsafe interval. In the case where
115 // 2) decrementing the buffer would make it leave the unsafe interval
143 // The safe interval is [too_low + 2 ulp; too_high - 2 ulp
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 667 Interval span = spec.span;
717 lp.setRowSpecSpan(new Interval(row, row + rowSpan));
718 lp.setColumnSpecSpan(new Interval(col, col + colSpan));
722 private static int clip(Interval minorRange, boolean minorWasDefined, int count) {
745 final Interval majorRange = majorSpec.span;
753 final Interval minorRange = minorSpec.span;
829 Interval span = spec.span;
2474 Interval interval = (Interval) that; local
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 654 Interval span = spec.span;
708 lp.setRowSpecSpan(new Interval(row, row + rowSpan));
709 lp.setColumnSpecSpan(new Interval(col, col + colSpan));
713 private static int clip(Interval minorRange, boolean minorWasDefined, int count) {
736 final Interval majorRange = majorSpec.span;
744 final Interval minorRange = minorSpec.span;
808 Interval span = spec.span;
2368 Interval interval = (Interval) that; local
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032458-fw_11.23-robot_sim/
touch_firmware_report-lumpy-fw_11.23-complete-20140116_103525.log 184 S'average time interval (ms)'
198 S'max time interval (ms)'
218 S' average time interval (ms): 9.668134'
220 aS' max time interval (ms): 10.798000'
423 S' average time interval (ms): 9.717571'
425 aS' max time interval (ms): 10.948000'
621 S' average time interval (ms): 9.675316'
623 aS' max time interval (ms): 10.136000'
822 S' average time interval (ms): 9.662643'
824 aS' max time interval (ms): 10.617000
    [all...]
  /frameworks/base/core/java/android/app/usage/
NetworkStats.java 294 * Start timestamp of the bucket's time interval. Defined in terms of "Unix time", see
296 * @return Start of interval.
303 * End timestamp of the bucket's time interval. Defined in terms of "Unix time", see
305 * @return End of interval.
312 * Number of bytes received during the bucket's time interval. Statistics are measured at
321 * Number of bytes transmitted during the bucket's time interval. Statistics are measured at
330 * Number of packets received during the bucket's time interval. Statistics are measured at
339 * Number of packets transmitted during the bucket's time interval. Statistics are measured
449 // TODO: getRelevantUids should be sensitive to time interval. When that's done,
  /system/bt/stack/btm/
btm_pm.c 216 /* already in the requested mode and the current interval has less latency than the max */
218 ((p_mode->mode & BTM_PM_MD_FORCE) && (p_mode->max >= p_cb->interval) && (p_mode->min <= p_cb->interval)) ||
219 ((p_mode->mode & BTM_PM_MD_FORCE)==0 && (p_mode->max >= p_cb->interval)) )
221 BTM_TRACE_DEBUG( "BTM_SetPowerMode: mode:0x%x interval %d max:%d, min:%d", p_mode->mode, p_cb->interval, p_mode->max, p_mode->min);
624 ((md_res.max >= p_cb->interval) && (md_res.min <= p_cb->interval)) )
808 ** interval - number of baseband slots (meaning depends on mode)
813 void btm_pm_proc_mode_change (UINT8 hci_status, UINT16 hci_handle, UINT8 mode, UINT16 interval)
    [all...]

Completed in 480 milliseconds

<<11121314151617181920>>