HomeSort by relevance Sort by last modified time
    Searched refs:interval (Results 251 - 275 of 777) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ui/gl/
gl_context_android.cc 37 virtual void SetSwapInterval(int interval) OVERRIDE {}
gl_context_osmesa.cc 124 void GLContextOSMesa::SetSwapInterval(int interval) {
  /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);
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglOsApi.h 48 void swapInterval(EGLNativeInternalDisplayType dpy,EGLNativeSurfaceType win,int interval);
MacNative.m 121 void nsSwapInterval(int *interval){
124 [ctx setValues:interval forParameter:NSOpenGLCPSwapInterval];
  /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/generic/goldfish/opengl/system/renderControl_enc/
renderControl_entry.cpp 28 void rcFBSetSwapInterval(EGLint interval);
157 void rcFBSetSwapInterval(EGLint interval)
160 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/chromium_org/rlz/lib/
financial_ping.cc 326 int64 interval = now - last_ping; local
328 // If interval is negative, clock was probably reset. So ping.
329 if (interval < 0)
339 return interval >= (has_events ? kEventsPingInterval : kNoEventsPingInterval);
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
Surface.cpp 370 void Surface::setSwapInterval(EGLint interval)
372 if (mSwapInterval == interval)
377 mSwapInterval = interval;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocommon_unittest.cc 55 // Test conversion between interval and fps
78 format.interval = VideoFormat::FpsToInterval(20);
84 format.interval = VideoFormat::FpsToInterval(20);
102 format2.interval /= 2;
  /external/iproute2/misc/
lnstat_util.c 90 if (time_after(&lf->last_read, &lf->interval, &tv)) {
107 / lf->interval.tv_sec;
191 lf->interval.tv_sec = 1;
  /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)
  /hardware/samsung_slsi/exynos5/gralloc/
framebuffer.cpp 65 int interval)
68 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
  /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/msm8960/libgralloc/
framebuffer.cpp 65 int interval)
73 interval = property_interval;
78 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
81 m->swapInterval = interval;
  /hardware/qcom/display/msm8974/libgralloc/
framebuffer.cpp 65 int interval)
73 interval = property_interval;
78 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
81 m->swapInterval = interval;
  /hardware/qcom/display/msm8x26/libgralloc/
framebuffer.cpp 65 int interval)
73 interval = property_interval;
78 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
81 m->swapInterval = interval;

Completed in 384 milliseconds

<<11121314151617181920>>