/sdk/emulator/opengl/host/libs/Translator/EGL/ |
EglMacApi.cpp | 205 void swapInterval(EGLNativeDisplayType dpy,EGLNativeSurfaceType win,int interval){ 206 nsSwapInterval(&interval);
|
/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 | 424 private synchronized void waitForEntry(long interval) 427 Log.v(TAG, "Waiting for " + interval + "ms."); 432 while (interval > 0) { 434 long sleep = Math.min(interval, TIMESLICE); 450 interval -= TIMESLICE;
|
/frameworks/base/services/java/com/android/server/ |
AlarmManagerService.java | 214 public void setRepeating(int type, long triggerAtTime, long interval, 224 alarm.repeatInterval = interval; 239 public void setInexactRepeating(int type, long triggerAtTime, long interval, 246 if (interval <= 0) { 247 Slog.w(TAG, "setInexactRepeating ignored because interval " + interval 252 // If the requested interval isn't a multiple of 15 minutes, just treat it as exact 253 if (interval % QUANTUM != 0) { 254 if (localLOGV) Slog.v(TAG, "Interval " + interval + " not a quantum multiple") [all...] |
/external/icu4c/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/netperf/ |
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. */
|
netcpu_procstat.c | 112 calibrate_idle_rate (int iterations, int interval)
|
netcpu_looper.c | 480 /* Loop a number of iterations, sleeping interval seconds each and */ 485 calibrate_idle_rate (int iterations, int interval) 521 sleep(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...] |
/hardware/msm7k/libgralloc/ |
framebuffer.cpp | 64 int interval) 67 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
|
/hardware/msm7k/libgralloc-qsd8k/ |
framebuffer.cpp | 68 int interval) 71 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
|
/external/blktrace/ |
blkiomon.c | 77 static int interval = -1; variable 279 wake.tv_sec += interval; 599 "-I <interval> | --interval=<interval>\n" \ 607 "\t-I Sample interval.\n" \ 641 .name = "interval", 705 interval = atoi(optarg); 725 if (interval <= 0) {
|
/external/nist-sip/java/gov/nist/javax/sip/ |
SipStackImpl.java | 282 * headers must be delivered in this interval and each successive buffer must be 283 * of the content delivered in this interval. Default value is -1 (ie. the stack 394 * When a forked response is received in this time interval from when the original 920 String interval = configurationProperties local [all...] |
/external/openfst/src/include/fst/ |
fstlib.h | 125 #include <fst/interval-set.h>
|
state-reachable.h | 30 #include <fst/interval-set.h> 50 typedef typename IntervalSet<I>::Interval Interval; 72 // Create tree interval 73 vector<Interval> *intervals = (*isets_)[s].Intervals(); 87 intervals->push_back(Interval(index, index + 1)); 89 intervals->push_back(Interval(index_, index_ + 1)); 107 // Non-tree interval 114 vector<Interval> *intervals = (*isets_)[s].Intervals(); 115 (*intervals)[0].end = index_; // Update tree interval en [all...] |
/external/ping/ |
ping_common.h | 34 #define MINUSERINTERVAL 200 /* Minimal allowed interval for non-root */ 93 extern int interval; /* interval between packets (msec) */
|
/external/v8/src/ |
lithium-allocator.cc | 279 // Find the last interval that ends before the position. If the 281 // split that interval and use the first part. 284 // If the split position coincides with the beginning of a use interval 289 // When splitting at start we need to locate the previous use interval. 310 ? after // Only interval in the range after split. 311 : last_interval_; // Last interval of the original range. 320 // The split position coincides with the beginning of a use interval (the 322 // the split child because split child owns use interval covering it. 391 LAllocator::TraceAlloc("Ensure live range %d in interval [%d %d[\n", 416 LAllocator::TraceAlloc("Add to live range %d interval [%d %d[\n" 421 UseInterval* interval = new(zone) UseInterval(start, end); local 428 UseInterval* interval = new(zone) UseInterval(start, end); local [all...] |
/external/webkit/Source/WebCore/page/ |
Settings.cpp | 488 void Settings::setDefaultMinDOMTimerInterval(double interval) 490 DOMTimer::setDefaultMinTimerInterval(interval); 498 void Settings::setMinDOMTimerInterval(double interval) 500 m_page->setMinimumTimerInterval(interval);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebFrameClient.h | 165 double interval, double fireTime) { }
|
/external/webkit/Source/WebKit/haiku/WebCoreSupport/ |
FrameLoaderClientHaiku.h | 97 virtual void dispatchWillPerformClientRedirect(const KURL&, double interval, double fireDate);
|
/external/webkit/Source/WebKit/mac/Plugins/ |
npapi.mm | 179 uint32_t NPN_ScheduleTimer(NPP instance, uint32_t interval, NPBool repeat, void (*timerFunc)(NPP npp, uint32_t timerID)) 181 return [pluginViewForInstance(instance) scheduleTimerWithInterval:interval repeat:repeat timerFunc:timerFunc];
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebViewPrivate.idl | 246 @discussion Returns the default minimum interval for DOMTimers on all pages, not 248 - (double)interval; 250 HRESULT defaultMinimumTimerInterval([out, retval] double* interval); 254 @discussion Sets the minimum interval for DOMTimers on the web page associated 256 - (double)interval; 258 HRESULT setMinimumTimerInterval([in] double interval);
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebFrameLoaderClient.h | 64 virtual void dispatchWillPerformClientRedirect(const WebCore::KURL&, double interval, double fireDate);
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebContext.cpp | 687 void WebContext::startMemorySampler(const double interval) 691 m_memorySamplerInterval = interval; 695 WebMemorySampler::shared()->start(interval); 704 sendToAllProcesses(Messages::WebProcess::StartMemorySampler(sampleLogSandboxHandle, sampleLogFilePath, interval));
|
/external/webkit/Tools/Scripts/ |
run-sunspider | 62 --shark20 Like --shark, but with a 20 microsecond sampling interval
|