HomeSort by relevance Sort by last modified time
    Searched refs:interval (Results 201 - 225 of 778) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/mesa3d/src/mesa/program/
prog_optimize.c 839 /** A live register interval */
840 struct interval struct
851 struct interval Intervals[REG_ALLOCATE_MAX_PROGRAM_TEMPS];
856 append_interval(struct interval_list *list, const struct interval *inv)
862 /** Insert interval inv into list, sorted by interval end */
864 insert_interval_by_end(struct interval_list *list, const struct interval *inv)
886 /** Remove the given interval from the interval list */
888 remove_interval(struct interval_list *list, const struct interval *inv
    [all...]
  /external/iproute2/misc/
rtacct.c 302 void update_db(int interval)
320 sample = (double)(incr*1000)/interval;
321 if (interval >= scan_interval) {
323 } else if (interval >= 1000) {
324 if (interval >= time_constant) {
327 double w = W*(double)interval/scan_interval;
lnstat_util.c 90 if (time_after(&lf->last_read, &lf->interval, &tv)) {
107 / lf->interval.tv_sec;
191 lf->interval.tv_sec = 1;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
Chronograph.java 37 public Object addAlarm(long interval, AlarmHandler handler, Object token) {
38 long at = System.currentTimeMillis() + interval;
  /packages/services/Telephony/src/com/android/phone/settings/
VisualVoicemailSettingsUtil.java 141 PhoneAccountHandle phoneAccount, long interval) {
145 Math.min(interval, MAX_SYNC_RETRY_INTERVAL_MS));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
locale.py 126 for interval in grouping:
128 if interval == CHAR_MAX:
131 if interval == 0:
136 yield interval
137 last_interval = interval
154 for interval in _grouping_intervals(grouping):
160 groups.append(s[-interval:])
161 s = s[:-interval]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
locale.py 126 for interval in grouping:
128 if interval == CHAR_MAX:
131 if interval == 0:
136 yield interval
137 last_interval = interval
154 for interval in _grouping_intervals(grouping):
160 groups.append(s[-interval:])
161 s = s[:-interval]
    [all...]
  /external/fio/
parse.h 56 unsigned int interval; /* client hint for suitable interval */ member in struct:fio_option
  /external/mesa3d/src/glx/
dri2.h 104 DRI2SwapInterval(Display *dpy, XID drawable, int interval);
  /external/netperf/
netcpu_osx.c 97 calibrate_idle_rate(int iterations, int interval)
  /external/skia/src/animator/
SkDisplayApply.h 81 SkMSec interval; member in class:SkApply
  /frameworks/base/services/tests/servicestests/src/com/android/server/location/
LocationBasedCountryDetectorTest.java 347 long interval = 1000; local
350 Thread.sleep(interval);
368 long interval = 1000; local
371 Thread.sleep(interval);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
ParametricEditor.java 117 FilterBasicRepresentation interval = (FilterBasicRepresentation) getLocalRepresentation(); local
118 apply += " " + effectName.toUpperCase() + " " + interval.getStateRepresentation();
139 FilterBasicRepresentation interval = (FilterBasicRepresentation) getLocalRepresentation(); local
140 mControl.setPrameter(interval);
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 477 double interval = roundToOneSignificantFigure(rawInterval); local
478 double intervalMagnitude = Math.pow(10, (int) Math.log10(interval));
479 int intervalSigDigit = (int) (interval / intervalMagnitude);
482 interval = Math.floor(10 * intervalMagnitude);
485 double first = Math.ceil(start / interval) * interval;
486 double last = Math.nextUp(Math.floor(stop / interval) * interval);
491 for (f = first; f <= last; f += interval) {
502 for (f = first, i = 0; i < n; f += interval, ++i)
    [all...]
  /device/asus/fugu/libaudio/
AudioHotplugThread.cpp 171 struct snd_interval* interval = param_to_interval( local
173 *min = interval->min;
174 *max = interval->max;
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl_entry.cpp 28 void rcFBSetSwapInterval(EGLint interval);
158 void rcFBSetSwapInterval(EGLint interval)
161 ctx->rcFBSetSwapInterval(ctx, interval);
  /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/libdrm/tests/
dristat.c 240 int interval = 0; local
253 case 'i': interval = strtol(optarg, NULL, 0); break;
261 fprintf( stderr, " -i [interval] Continuously display statistics every [interval] seconds\n" );
278 if (mask & DRM_STATS) getstats(fd, interval);
  /external/lldb/test/pexpect-2.4/examples/
bd_serv.py 29 def __init__(self, interval, function, args=[], kwargs={}):
31 """The interval parameter defines time between each call to the function.
35 self.interval = interval
50 # self.finished.wait(self.interval)
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AlarmManagerTest.java 145 private void assertRepeatingScheduledAlarm(long now, long interval, PendingIntent pendingIntent,
152 assertThat(scheduledAlarm.interval, equalTo(interval));
  /external/webrtc/src/system_wrappers/interface/
tick_util.h 88 TickInterval(WebRtc_Word64 interval);
286 inline TickInterval::TickInterval(const WebRtc_Word64 interval)
287 : _interval(interval)
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 274 * @param interval The number of milliseconds between samples
276 public void start(int interval) {
277 if (interval < 1) {
278 throw new IllegalArgumentException("interval < 1");
285 timer.scheduleAtFixedRate(sampler, 0, interval);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
handlers.py 168 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False):
173 # Calculate the real rollover interval, which is just the number of
186 self.interval = 1 # one second
190 self.interval = 60 # one minute
194 self.interval = 60 * 60 # one hour
198 self.interval = 60 * 60 * 24 # one day
202 self.interval = 60 * 60 * 24 * 7 # one week
211 raise ValueError("Invalid rollover interval specified: %s" % self.when)
214 self.interval = self.interval * interval # multiply by units requeste
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
handlers.py 168 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False):
173 # Calculate the real rollover interval, which is just the number of
186 self.interval = 1 # one second
190 self.interval = 60 # one minute
194 self.interval = 60 * 60 # one hour
198 self.interval = 60 * 60 * 24 # one day
202 self.interval = 60 * 60 * 24 * 7 # one week
211 raise ValueError("Invalid rollover interval specified: %s" % self.when)
214 self.interval = self.interval * interval # multiply by units requeste
    [all...]
  /hardware/qcom/display/msm8084/libgralloc/
framebuffer.cpp 65 int interval)
73 interval = property_interval;
77 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
80 m->swapInterval = interval;

Completed in 761 milliseconds

1 2 3 4 5 6 7 891011>>