/external/iproute2/tc/ |
m_estimator.c | 31 fprintf(stderr, "Usage: ... estimator INTERVAL TIME-CONST\n"); 32 fprintf(stderr, " INTERVAL is interval between measurements\n"); 49 invarg("estimator", "invalid estimator interval"); 60 fprintf(stderr, "[estimator i=%u e=%u]\n", est->interval, est->ewma_log);
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
DateIntervalFormat.java | 36 * Date interval means from one date to another date, 45 * For example, the date interval format from "Jan 11, 2008" to "Jan 18,. 2008" 58 * We introduce class DateIntervalInfo to save date interval 62 * Logically, the interval patterns are mappings 88 * The calendar fields we support for interval formatting are: 102 * For other calendar fields, the compact interval formatting is not 103 * supported. And the interval format will be fall back to fall-back 108 * There are pre-defined interval patterns for those pre-defined skeletons 112 * is "year", the date interval pattern is "MMM d, yyyy - MMM d, yyyy", 115 * the date interval pattern is "MMM d - MMM d, yyyy" [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
DateIntervalFormat.java | 35 * Date interval means from one date to another date, 44 * For example, the date interval format from "Jan 11, 2008" to "Jan 18,. 2008" 57 * We introduce class DateIntervalInfo to save date interval 61 * Logically, the interval patterns are mappings 87 * The calendar fields we support for interval formatting are: 101 * For other calendar fields, the compact interval formatting is not 102 * supported. And the interval format will be fall back to fall-back 107 * There are pre-defined interval patterns for those pre-defined skeletons 111 * is "year", the date interval pattern is "MMM d, yyyy - MMM d, yyyy", 114 * the date interval pattern is "MMM d - MMM d, yyyy" [all...] |
/external/icu/icu4c/source/i18n/ |
precision.cpp | 76 // Smallest interval for value stored in interval 77 DigitInterval interval; local 78 value.getSmallestInterval(interval); 79 if (fMax.getIntDigitCount() < interval.getIntDigitCount()) { 87 FixedPrecision::getIntervalForZero(DigitInterval &interval) const { 88 interval = fMin; 90 interval.expandToContainDigit(interval.getIntDigitCount() - fSignificant.getMin()); 92 interval.shrinkToFitWithin(fMax) [all...] |
/external/skia/src/effects/gradients/ |
Sk4fGradientBase.cpp | 31 Interval::Interval(SkPMColor c0, SkScalar p0, 48 Interval::Interval(const Sk4f& c0, const Sk4f& dc, 58 Interval::contains(SkScalar fx) const { 73 // The main job here is to build an interval list. Intervals are a different 81 // It also means that the interval order matches the color stops when dx >= 0, 85 // avoid this if interval storage size becomes a concern. 91 // interpolation space (note: the interval color storage is SkPM4f, but 109 // interval series - then the iterator operates just as in th 213 const Interval& interval = fIntervals[i]; local [all...] |
/external/llvm/lib/Analysis/ |
Interval.cpp | 1 //===- Interval.cpp - Interval class code ---------------------------------===// 10 // This file contains the definition of the Interval class, which represents a 15 #include "llvm/Analysis/Interval.h" 24 // Interval Implementation 27 // isLoop - Find out if there is a back edge in this interval... 29 bool Interval::isLoop() const { 30 // There is a loop in this interval iff one of the predecessors of the header 31 // node lives in the interval. 40 void Interval::print(raw_ostream &OS) const [all...] |
/art/compiler/optimizing/ |
live_ranges_test.cc | 71 LiveInterval* interval = liveness.GetInstructionFromSsaIndex(0)->GetLiveInterval(); local 72 LiveRange* range = interval->GetFirstRange(); 119 LiveInterval* interval = liveness.GetInstructionFromSsaIndex(0)->GetLiveInterval(); local 120 LiveRange* range = interval->GetFirstRange(); 171 LiveInterval* interval = liveness.GetInstructionFromSsaIndex(1)->GetLiveInterval(); local 172 LiveRange* range = interval->GetFirstRange(); 180 interval = liveness.GetInstructionFromSsaIndex(0)->GetLiveInterval(); 181 // The then branch is a hole for this constant, therefore its interval has 2 ranges. 183 range = interval->GetFirstRange(); 195 interval = liveness.GetInstructionFromSsaIndex(2)->GetLiveInterval() 250 LiveInterval* interval = graph->GetIntConstant(0)->GetLiveInterval(); local 330 LiveInterval* interval = constant->GetLiveInterval(); local 407 LiveInterval* interval = liveness.GetInstructionFromSsaIndex(0)->GetLiveInterval(); local [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
CountDownTimerTest.java | 44 int count = (int) (mActivity.MILLISINFUTURE / mActivity.INTERVAL); 45 final long TIMEOUT_MSEC = mActivity.MILLISINFUTURE + mActivity.INTERVAL + OFFSET * count; 52 final long DELAY_MSEC = mActivity.INTERVAL + OFFSET; 57 final long TIMEOUT_MSEC = mActivity.MILLISINFUTURE + mActivity.INTERVAL; 61 int count = Long.valueOf(DELAY_MSEC / mActivity.INTERVAL).intValue() + 1; 69 long expecTickTime = mStartTime + i * mActivity.INTERVAL;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ |
UnivariateRealSolver.java | 28 * Implementations will search for only one zero in the given interval.</p> 62 * Solve for a zero root in the given interval. 63 * <p>A solver may require that the interval brackets a single zero root. 67 * @param min the lower bound for the interval. 68 * @param max the upper bound for the interval. 82 * Solve for a zero root in the given interval. 83 * <p>A solver may require that the interval brackets a single zero root. 88 * @param min the lower bound for the interval. 89 * @param max the upper bound for the interval. 104 * Solve for a zero in the given interval, start at startValue [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
HermiteInterpolator.java | 29 /** The coordinates of the start point of the interval. */ 31 /** The coordinates of the end point of the interval. */ 48 * @param xCoords the array of x-coordinates. Valid data are in left-open interval 50 * @param yCoords the array of y-coordinates. Valid data are in left-open interval 52 * @param minPos the minimum index of left-open interval of valid data. 53 * @param maxPos the maximum index of left-open interval of valid data. 64 * Set interpolation interval. 66 * The start and end coordinates of the interval will be set in {@link #mP1X}, {@link #mP1Y}, 70 * @param p0 the index just before interpolation interval. If <code>p1</code> points the start 73 * @param p1 the start index of interpolation interval [all...] |
/external/llvm/lib/CodeGen/ |
SplitKit.h | 83 // Current live interval. 123 /// analyze - set CurLI to the specified interval, and analyze how it may be 133 /// new interval. 136 /// getParent - Return the last analyzed interval. 204 /// - Start a new live interval with openIntv. 205 /// - Mark the places where the new interval is entered using enterIntv* 206 /// - Mark the ranges where the new interval is used with useIntv* 207 /// - Mark the places where the interval is exited with exitIntv*. 208 /// - Finish the current interval with closeIntv and repeat from 2. 224 /// created. SplitEditor automatically creates interval 0 to contai [all...] |
/external/autotest/client/profilers/sar/ |
sar.py | 20 def initialize(self, interval=1): 22 Set sar interval and verify what flags the installed sar supports. 24 @param interval: Interval used by sar to produce system data. 26 self.interval = interval 29 # params using interval of 1 second continuously. For newer versions, 57 cmd = self.cmd % (raw, self.interval)
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
chrome_controller_unittest.py | 30 interval = 1 32 controller.StartTracing(interval)
|
perf_controller_unittest.py | 29 interval = 1 31 controller.StartTracing(interval)
|
systrace_controller_unittest.py | 25 interval = 1 27 controller.StartTracing(interval)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/elb/ |
healthcheck.py | 31 def __init__(self, access_point=None, interval=30, target=None, 36 :ivar int interval: Specifies how many seconds there are between 44 self.interval = interval 57 if name == 'Interval': 58 self.interval = int(value) 85 self.interval = new_hc.interval
|
/external/iproute2/misc/ |
lnstat.h | 30 struct timeval interval; /* interval */ member in struct:lnstat_file
|
/external/libnl/include/linux/ |
gen_stats.h | 50 * @interval: sampling period 55 signed char interval; member in struct:gnet_estimator
|
/external/tcpdump/tests/ |
babel_auth.out | 2 Hello seqno 58134 interval 4.00s 3 Update/id ::/0 metric 65535 seqno 41391 interval infinity
|
/external/valgrind/exp-bbv/tests/amd64-linux/ |
clone_test.post.exp | 19 # Total intervals: 15 (Interval Size 100000) 53 # Total intervals: 25 (Interval Size 100000)
|
/external/valgrind/exp-bbv/tests/x86-linux/ |
clone_test.post.exp | 19 # Total intervals: 15 (Interval Size 100000) 53 # Total intervals: 25 (Interval Size 100000)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
gen_stats.h | 62 * @interval: sampling period 67 signed char interval; member in struct:gnet_estimator
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
gen_stats.h | 58 * @interval: sampling period 62 signed char interval; member in struct:gnet_estimator
|
v4l2-subdev.h | 99 * @interval: frame interval in seconds 103 struct v4l2_fract interval; member in struct:v4l2_subdev_frame_interval 108 * struct v4l2_subdev_frame_interval_enum - Frame interval enumeration 110 * @index: frame interval index during enumeration 114 * @interval: frame interval in seconds 122 struct v4l2_fract interval; member in struct:v4l2_subdev_frame_interval_enum
|
/external/clang/test/Analysis/ |
NewDeleteLeaks-PR18394.cpp | 1 // RUN: %clang_cc1 -analyzer-config graph-trim-interval=1 -analyzer-max-loop 1 -analyze -analyzer-checker=core,cplusplus.NewDeleteLeaks -verify %s
|