HomeSort by relevance Sort by last modified time
    Searched refs:interval (Results 401 - 425 of 964) sorted by null

<<11121314151617181920>>

  /external/deqp/framework/egl/
egluApiPrototypes.inl 26 EGLBoolean eglSwapInterval (EGLDisplay dpy, EGLint interval);
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 47 depending on the swap interval as set by the GLX_SGI_swap_control or
116 time multiplied by the swap interval (or one if the swap interval is set
141 <interval> set by glXSwapIntervalSGI or the default swap of once
  /external/netperf/
netcpu_kstat.c 249 calibrate_idle_rate(int iterations, int interval)
292 sleep(interval);
netcpu_perfstat.c 116 calibrate_idle_rate(int iterations, int interval)
193 sleep(interval);
netcpu_pstat.c 98 calibrate_idle_rate(int iterations, int interval)
159 sleep(interval);
netsh.c 184 double demo_interval = 1000000.0; /* what is the desired interval to
185 display interval results. default
191 reporting interval? */
210 double interval; variable
262 and confidence interval in percentage (10)\n\
444 interval = 0.05; /* five percent? */
596 interval = (double) convert(arg2)/100;
754 /* interval. */
  /external/valgrind/main/auxprogs/
nightly-build-summary 18 # There is unfortunately no good way of figuring out the interval
63 --from=INTEGER beginning of mail interval; > 14800
65 [--to=INTEGER] end of mail interval; default = from + 100
459 print STDERR "*** invalid [from,to] interval. Try again\n";
465 print "check message interval [$from...$to]\n" if ($debug);
  /frameworks/base/services/core/java/com/android/server/
NetworkTimeUpdateService.java 45 * interval and then resets to checking on longer intervals.
82 // Try-again polling interval, in case the network request failed
211 * Cancel old alarm and starts a new one for the specified interval.
213 * @param interval when to trigger the alarm, starting from now.
215 private void resetAlarm(long interval) {
218 long next = now + interval;
  /frameworks/native/libs/gui/
Surface.cpp 103 int Surface::hook_setSwapInterval(ANativeWindow* window, int interval) {
105 return c->setSwapInterval(interval);
175 int Surface::setSwapInterval(int interval) {
178 // interval is silently clamped to minimum and maximum implementation
181 if (interval < minSwapInterval)
182 interval = minSwapInterval;
184 if (interval > maxSwapInterval)
185 interval = maxSwapInterval;
187 mSwapIntervalZero = (interval == 0);
  /frameworks/native/opengl/tools/glgen/specs/egl/
EGL14.spec 22 EGLBoolean eglSwapInterval ( EGLDisplay dpy, EGLint interval )
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglMacApi.cpp 222 void swapInterval(EGLNativeDisplayType dpy,EGLNativeSurfaceType win,int interval){
223 nsSwapInterval(&interval);
  /external/bluetooth/bluedroid/stack/btm/
btm_inq.c 166 ** interval, the default values are used.
175 tBTM_STATUS BTM_SetDiscoverability (UINT16 inq_mode, UINT16 window, UINT16 interval)
208 /* If the window and/or interval is '0', set to default values */
212 if (!interval)
213 interval = BTM_DEFAULT_DISC_INTERVAL;
215 BTM_TRACE_API ("BTM_SetDiscoverability: mode %d [NonDisc-0, Lim-1, Gen-2], window 0x%04x, interval 0x%04x",
216 inq_mode, window, interval);
218 /*** Check for valid window and interval parameters ***/
222 /* window must be less than or equal to interval */
225 interval < HCI_MIN_INQUIRYSCAN_INTERVAL |
    [all...]
  /external/chromium_org/content/child/npapi/
plugin_instance.cc 452 uint32 PluginInstance::ScheduleTimer(uint32 interval,
461 // Record timer interval and repeat.
463 info.interval = interval;
471 base::TimeDelta::FromMilliseconds(interval));
513 base::TimeDelta::FromMilliseconds(info.interval));
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
pseudotcp_unittest.cc 177 long interval = 0; // NOLINT local
178 tcp->GetNextClock(PseudoTcp::Now(), interval); local
179 interval = talk_base::_max<int>(interval, 0L); // sometimes interval is < 0
181 talk_base::Thread::Current()->PostDelayed(interval, this, message);
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
EventRecurrenceTest.java 42 /* int interval */ 0,
63 /* int interval */ 0,
84 /* int interval */ 0,
105 /* int interval */ 0,
126 /* int interval */ 0,
147 /* int interval */ 0,
168 /* int interval */ 0,
190 /* int interval */ 0,
212 /* int interval */ 0,
230 verifyRecurType("FREQ=DAILY;INTERVAL=5000"
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 426 private synchronized void waitForEntry(long interval)
429 Log.v(TAG, "Waiting for " + interval + "ms.");
434 while (interval > 0) {
436 long sleep = Math.min(interval, TIMESLICE);
452 interval -= TIMESLICE;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
PinDialogFragment.java 581 int interval = mMaxValue - mMinValue + 1;
582 if (value < mMinValue - interval || value > mMaxValue + interval) {
586 return (value < mMinValue) ? value + interval
587 : (value > mMaxValue) ? value - interval : value;
  /external/chromium_org/net/socket/
transport_client_socket_pool.cc 210 int64 interval = (now - last_connect_time).InMilliseconds(); local
211 if (interval <= 10)
213 else if (interval <= 20)
  /external/chromium_org/third_party/icu/source/test/cintltst/
utmstest.c 67 uint64_t interval = max - min; local
73 /* Verify that we don't have a huge interval. */
74 if (interval < (uint64_t)U_INT64_MAX) {
75 ranInt = interval;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
videosource.cc 147 return (value <= cricket::VideoFormat::IntervalToFps(format_in.interval));
159 if (value <= cricket::VideoFormat::IntervalToFps(format_in.interval)) {
160 format_out->interval = cricket::VideoFormat::FpsToInterval(value);
  /external/fio/
goptions.c 506 guint maxval, interval; local
530 interval = 1.0;
531 if (o->interval)
532 interval = o->interval;
534 i->spin = gtk_spin_button_new_with_range(o->minval, maxval, interval);
712 guint interval; local
738 interval = 1.0;
739 if (o->interval)
740 interval = o->interval
    [all...]
  /external/icu/icu4c/source/test/cintltst/
utmstest.c 67 uint64_t interval = max - min; local
73 /* Verify that we don't have a huge interval. */
74 if (interval < (uint64_t)U_INT64_MAX) {
75 ranInt = interval;
  /external/lldb/examples/python/
performance.py 63 self.interval = self.end - self.start
311 print('Breakpoint time = %.03f sec.' % breakpoint_timer.interval)
323 print('Total time = %.03f sec.' % total_time.interval)
  /external/opencv/cv/src/
cvfloodfill.cpp 360 #define DIFF_INT_C1(p1,p2) ((unsigned)((p1)[0] - (p2)[0] + d_lw[0]) <= interval[0])
362 #define DIFF_INT_C3(p1,p2) ((unsigned)((p1)[0] - (p2)[0] + d_lw[0])<= interval[0] && \
363 (unsigned)((p1)[1] - (p2)[1] + d_lw[1])<= interval[1] && \
364 (unsigned)((p1)[2] - (p2)[2] + d_lw[2])<= interval[2])
366 #define DIFF_FLT_C1(p1,p2) (fabs((p1)[0] - (p2)[0] + d_lw[0]) <= interval[0])
368 #define DIFF_FLT_C3(p1,p2) (fabs((p1)[0] - (p2)[0] + d_lw[0]) <= interval[0] && \
369 fabs((p1)[1] - (p2)[1] + d_lw[1]) <= interval[1] && \
370 fabs((p1)[2] - (p2)[2] + d_lw[2]) <= interval[2])
385 unsigned interval[] = {0,0,0}; local
403 interval[i] = (unsigned)(_d_up[i] + _d_lw[i])
691 float interval[] = {0,0,0}; local
    [all...]
  /art/compiler/optimizing/
ssa_liveness_analysis.h 88 * A use position represents a live interval use at a given position.
131 * An interval is a list of disjoint live ranges where an instruction is live.
132 * Each instruction that has uses gets an interval.
150 LiveInterval* interval = new (allocator) LiveInterval(allocator, type); local
151 interval->SetRegister(reg);
152 interval->is_fixed_ = true;
153 return interval;
166 // First time we see a use of that interval.
176 // There is a hole in the interval. Create a new range.
197 // There is a hole in the interval. Create a new range
    [all...]

Completed in 1144 milliseconds

<<11121314151617181920>>