/external/ltp/ |
D | ltpmenu | 254 s) INTERVAL="seconds" ;; 255 m) INTERVAL="minutes" ;; 256 h) INTERVAL="hours" ;; 257 d) INTERVAL="days" ;; 260 echo $INTERVAL 261 WINDOW_MSG="Please enter the number of $INTERVAL to run"
|
/external/autotest/server/site_tests/network_WiFi_IPv6RA/ |
D | network_WiFi_IPv6RA.py | 16 INTERVAL = 2 variable 78 count = LIFETIME / LIFETIME_FRACTION / INTERVAL 79 ip_utils.send_ra(mac=client_mac, interval=INTERVAL, count=count) 92 ip_utils.send_ra(mac=client_mac, interval=INTERVAL, count=2)
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/ |
D | TimeZoneBoundaryTest.java | 44 static final long INTERVAL = 10; // Milliseconds field in TimeZoneBoundaryTest 73 while ((max - min) > INTERVAL) in findDaylightBoundaryUsingDate() 92 if (mindelta >= 0 && mindelta <= INTERVAL && in findDaylightBoundaryUsingDate() 93 mindelta >= 0 && mindelta <= INTERVAL) in findDaylightBoundaryUsingDate() 167 while ((max - min) > INTERVAL) in findDaylightBoundaryUsingTimeZone() 188 if (mindelta >= 0 && mindelta <= INTERVAL && in findDaylightBoundaryUsingTimeZone() 189 mindelta >= 0 && mindelta <= INTERVAL) in findDaylightBoundaryUsingTimeZone() 667 while ((max - min) > INTERVAL) in _testUsingBinarySearch() 685 if (mindelta >= 0 && mindelta <= INTERVAL && in _testUsingBinarySearch() 686 mindelta >= 0 && mindelta <= INTERVAL) in _testUsingBinarySearch()
|
D | TimeZoneTest.java | 657 while ((max - min) > INTERVAL) { in _testUsingBinarySearch() 672 mindelta <= INTERVAL && in _testUsingBinarySearch() 674 mindelta <= INTERVAL) in _testUsingBinarySearch() 680 static final int INTERVAL = 100; field in TimeZoneTest
|
/external/icu/icu4c/source/test/intltest/ |
D | tzbdtest.cpp | 71 const UDate TimeZoneBoundaryTest::INTERVAL = 10; member in TimeZoneBoundaryTest 84 while ((max - min) > INTERVAL) { in findDaylightBoundaryUsingDate() 99 mindelta <= INTERVAL && in findDaylightBoundaryUsingDate() 101 … maxdelta <= INTERVAL) logln(UnicodeString("PASS: Expected boundary at ") + expectedBoundary); in findDaylightBoundaryUsingDate() 134 while ((max - min) > INTERVAL) { in findDaylightBoundaryUsingTimeZone() 150 mindelta <= INTERVAL && in findDaylightBoundaryUsingTimeZone() 152 … maxdelta <= INTERVAL) logln(UnicodeString("PASS: Expected boundary at ") + expectedBoundary); in findDaylightBoundaryUsingTimeZone() 395 while ((max - min) > INTERVAL) { in testUsingBinarySearch() 410 mindelta <= INTERVAL && in testUsingBinarySearch() 412 … maxdelta <= INTERVAL) logln(UnicodeString("PASS: Expected boundary at ") + expectedBoundary); in testUsingBinarySearch()
|
D | tztest.h | 106 static const UDate INTERVAL; variable
|
D | tzbdtest.h | 96 static const UDate INTERVAL; variable
|
D | tztest.cpp | 249 while ((max - min) > INTERVAL) { in findTransition() 279 while ((max - min) > INTERVAL) { in testUsingBinarySearch() 293 mindelta <= INTERVAL && in testUsingBinarySearch() 295 maxdelta <= INTERVAL) in testUsingBinarySearch() 301 const UDate TimeZoneTest::INTERVAL = 100; member in TimeZoneTest
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/ |
D | TimeZoneBoundaryTest.java | 43 static final long INTERVAL = 10; // Milliseconds field in TimeZoneBoundaryTest 72 while ((max - min) > INTERVAL) in findDaylightBoundaryUsingDate() 91 if (mindelta >= 0 && mindelta <= INTERVAL && in findDaylightBoundaryUsingDate() 92 mindelta >= 0 && mindelta <= INTERVAL) in findDaylightBoundaryUsingDate() 166 while ((max - min) > INTERVAL) in findDaylightBoundaryUsingTimeZone() 187 if (mindelta >= 0 && mindelta <= INTERVAL && in findDaylightBoundaryUsingTimeZone() 188 mindelta >= 0 && mindelta <= INTERVAL) in findDaylightBoundaryUsingTimeZone() 666 while ((max - min) > INTERVAL) in _testUsingBinarySearch() 684 if (mindelta >= 0 && mindelta <= INTERVAL && in _testUsingBinarySearch() 685 mindelta >= 0 && mindelta <= INTERVAL) in _testUsingBinarySearch()
|
D | TimeZoneTest.java | 656 while ((max - min) > INTERVAL) { in _testUsingBinarySearch() 671 mindelta <= INTERVAL && in _testUsingBinarySearch() 673 mindelta <= INTERVAL) in _testUsingBinarySearch() 679 static final int INTERVAL = 100; field in TimeZoneTest
|
/external/ltp/testcases/kernel/hotplug/cpu_hotplug/doc/ |
D | hotplug05.txt | 7 INTERVAL=30 31 sleep $INTERVAL
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/ |
D | 2-2.c | 25 #define INTERVAL 5 macro 112 alarm(INTERVAL); in main()
|
D | 3-1.c | 22 #define INTERVAL 1 macro 113 sleep(INTERVAL); in main()
|
D | 2-1.c | 29 #define INTERVAL 1 macro 128 sleep(INTERVAL); in main()
|
D | 4-3.c | 53 #define INTERVAL (700) /* ns, frequency (actually, period) for the condition signaling */ macro 208 ts.tv_nsec = INTERVAL; in worker()
|
D | 2-3.c | 25 #define INTERVAL 2 macro
|
/external/iproute2/examples/ |
D | cbq.init-v0.7.3 | 882 WEEKDAYS=${TIMESPEC%%/*}; INTERVAL=${TIMESPEC##*/} 883 BEG_TIME=${INTERVAL%%-*}; END_TIME=${INTERVAL##*-} 886 [ "$WEEKDAYS" != "$INTERVAL" -a \
|
/external/ltp/testcases/realtime/func/rt-migrate/ |
D | rt-migrate.c | 127 #define INTERVAL 100ULL * NS_PER_MS macro 136 static unsigned long long interval = INTERVAL; 467 intv.tv_sec = INTERVAL / NS_PER_SEC; in main() 468 intv.tv_nsec = INTERVAL % (1 * NS_PER_SEC); in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_wait/ |
D | 4-1.c | 76 #define INTERVAL (700) /* ns, frequency (actually, period) for the condition signaling */ macro 219 ts.tv_nsec = INTERVAL; in worker()
|
/external/iproute2/doc/ |
D | nstat.sgml | 44 <item><tt/-d INTERVAL/ - <tt/Xstat/ is run in daemon mode collecting 45 statistics. <tt/INTERVAL/ is interval between measurements 47 <item><tt/-t INTERVAL/ - time interval to average rates. Default value
|
D | rtstat.sgml | 43 <item><tt/-i INTERVAL/ - interval between snapshots, default value is
|
/external/ltp/testcases/kernel/controllers/cpuctl/ |
D | README | 20 it could run on all cpus in an interval of INTERVAL seconds. (for convinience
|
/external/netperf/doc/ |
D | netperf.info | 770 reports of performance during the run. [INTERVAL,UNITS] follow 771 the semantics of an optionspec. If specified, INTERVAL gives the 775 take at least INTERVAL seconds. If omitted, INTERVAL defaults to
|