/external/autotest/client/site_tests/power_LoadTest/extension/ |
H A D | time.js | 5 // Convert seconds to milliseconds 6 function seconds(s) { function 12 return seconds(m * 60);
|
H A D | params.js | 5 // Convert seconds to milliseconds 6 function seconds(s) { function 12 return seconds(m * 60); 16 var test_startup_delay = seconds(5);
|
/external/google-benchmark/src/ |
H A D | sleep.cc | 30 void SleepForSeconds(double seconds) { argument 31 SleepForMilliseconds(static_cast<int>(kNumMillisPerSecond * seconds)); 46 void SleepForSeconds(double seconds) { 47 SleepForMicroseconds(static_cast<int>(seconds * kNumMicrosPerSecond));
|
/external/replicaisland/src/com/replica/replicaisland/ |
H A D | VibrationSystem.java | 34 public void vibrate(float seconds) { argument 39 vibrator.vibrate((int)(seconds * 1000));
|
H A D | TimeSystem.java | 20 * Maintains a canonical time step, in seconds, for the entire game engine. This time step 112 public void freeze(float seconds) { argument 113 mFreezeDelay = seconds;
|
/external/webrtc/webrtc/system_wrappers/source/ |
H A D | clock_unittest.cc | 19 uint32_t seconds; local 21 clock->CurrentNtp(seconds, fractions); 24 EXPECT_GE(milliseconds, Clock::NtpToMs(seconds, fractions)); 25 EXPECT_NEAR(milliseconds, Clock::NtpToMs(seconds, fractions), 100);
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
H A D | rrtr.cc | 34 uint32_t seconds = ByteReader<uint32_t>::ReadBigEndian(&buffer[4]); local 36 ntp_.Set(seconds, fraction); 44 ByteWriter<uint32_t>::WriteBigEndian(&buffer[4], ntp_.seconds());
|
/external/kernel-headers/original/uapi/scsi/ |
H A D | scsi_netlink_fc.h | 60 uint64_t seconds; member in struct:fc_nl_event
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
H A D | TimedTrace.cc | 52 double seconds = _timeEllapsedSec - minutes * 60; local 56 minutes, seconds, message);
|
/external/icu/icu4c/source/i18n/ |
H A D | utmscale.c | 17 #define seconds (milliseconds * 1000) macro 18 #define minutes (seconds * 60) 26 {seconds, INT64_C(62135596800), INT64_C(-984472800485), INT64_C(860201606885), U_INT64_MIN, U_INT64_MAX, INT64_C(62135596801), INT64_C(62135596799), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)}, 30 {seconds, INT64_C(60052752000), INT64_C(-982389955685), INT64_C(862284451685), U_INT64_MIN, U_INT64_MAX, INT64_C(60052752001), INT64_C(60052751999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)}, 31 {seconds, INT64_C(63113904000), INT64_C(-985451107685), INT64_C(859223299685), U_INT64_MIN, U_INT64_MAX, INT64_C(63113904001), INT64_C(63113903999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timescale/ |
H A D | EpochOffsets.java | 39 private static final long seconds = milliseconds * 1000; field in class:EpochOffsets 40 private static final long minutes = seconds * 60;
|
H A D | GenerateCTimeScaleData.java | 38 private static final long seconds = milliseconds * 1000; field in class:GenerateCTimeScaleData 39 private static final long minutes = seconds * 60; 82 } else if (units == seconds) { 83 cargs[0] = "seconds";
|
/external/v8/test/unittests/libplatform/ |
H A D | default-platform-unittest.cc | 27 void IncreaseTime(double seconds) { time_ += seconds; } argument
|
/external/webrtc/webrtc/system_wrappers/include/ |
H A D | ntp_time.h | 24 NtpTime(uint32_t seconds, uint32_t fractions) argument 25 : seconds_(seconds), fractions_(fractions) {} 33 void Set(uint32_t seconds, uint32_t fractions) { argument 34 seconds_ = seconds; 47 uint32_t seconds() const { return seconds_; } function in class:webrtc::NtpTime 56 return n1.seconds() == n2.seconds() && n1.fractions() == n2.fractions();
|
/external/deqp/framework/delibs/dethread/unix/ |
H A D | deThreadUnix.c | 146 deUint32 seconds = milliseconds / 1000; local 148 milliseconds = milliseconds - seconds * 1000; 150 if (seconds > 0) 151 sleep(seconds);
|
/external/fio/ |
H A D | mutex.c | 95 static int mutex_timed_out(struct timeval *t, unsigned int seconds) argument 97 return mtime_since_now(t) >= seconds * 1000; 100 int fio_mutex_down_timeout(struct fio_mutex *mutex, unsigned int seconds) argument 109 t.tv_sec = tv_s.tv_sec + seconds; 122 if (ret == ETIMEDOUT && !mutex_timed_out(&tv_s, seconds))
|
/external/iptables/include/linux/netfilter/ |
H A D | xt_recent.h | 27 __u32 seconds; member in struct:xt_recent_mtinfo 36 __u32 seconds; member in struct:xt_recent_mtinfo_v1
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
H A D | xt_recent.h | 27 __u32 seconds; member in struct:xt_recent_mtinfo 36 __u32 seconds; member in struct:xt_recent_mtinfo_v1
|
/external/libchrome/base/time/ |
H A D | time_mac.cc | 95 thread_info_data.user_time.seconds); 181 CFAbsoluteTime seconds = CFGregorianDateGetAbsoluteTime(date, time_zone) + local 183 return Time(static_cast<int64_t>(seconds * kMicrosecondsPerSecond) + 188 // Avoid rounding issues, by only putting the integral number of seconds 193 CFAbsoluteTime seconds = ((us_ - microsecond) / kMicrosecondsPerSecond) - local 199 CFGregorianDate date = CFAbsoluteTimeGetGregorianDate(seconds, time_zone); 201 int cf_day_of_week = CFAbsoluteTimeGetDayOfWeek(seconds, time_zone); 209 // Make sure seconds are rounded down towards -infinity. 211 // Calculate milliseconds ourselves, since we rounded the |seconds|, making
|
/external/libweave/examples/daemon/sample/ |
H A D | sample.cc | 34 "seconds": { 125 int seconds; local 126 if (!params.GetInteger("seconds", &seconds)) 127 seconds = 10; 130 DoTick(cmd, seconds); 133 void DoTick(const std::weak_ptr<weave::Command>& command, int seconds) { argument 138 if (seconds > 0) { 139 LOG(INFO) << "countdown tick: " << seconds << " seconds lef [all...] |
/external/toybox/toys/other/ |
H A D | netcat.c | 18 -q SECONDS quit this many seconds after EOF on stdin. 58 long quit_delay; // -q Exit after EOF from stdin after # seconds. 61 long wait; // -w Wait # seconds for a connection. 71 static void set_alarm(int seconds) argument 73 xsignal(SIGALRM, seconds ? timeout : SIG_DFL); 74 alarm(seconds);
|
/external/v8/test/mjsunit/ |
H A D | to_number_order.js | 71 var seconds = { valueOf: function() { x += 6; return 0; } }; 75 new Date(year, month, date, hours, minutes, seconds, ms); 80 Date(year, month, date, hours, minutes, seconds, ms); 84 Date.UTC(year, month, date, hours, minutes, seconds, ms); 89 new Date().setSeconds(seconds, ms); 93 new Date().setSeconds(seconds, ms); 97 new Date().setUTCSeconds(seconds, ms); 101 new Date().setMinutes(minutes, seconds, ms); 105 new Date().setUTCMinutes(minutes, seconds, ms); 109 new Date().setHours(hours, minutes, seconds, m [all...] |
/external/v8/test/webkit/ |
H A D | date-constructor.js | 82 var seconds = { valueOf: function() { testStr += 6; return 0; } }; 86 new Date(year, month, date, hours, minutes, seconds, ms); 90 Date.UTC(year, month, date, hours, minutes, seconds, ms);
|
/external/clang/test/Analysis/ |
H A D | casts.c | 73 double seconds = intSeconds; local 74 if (seconds)
|
/external/conscrypt/src/main/java/org/conscrypt/ |
H A D | AbstractSessionContext.java | 42 * Maximum lifetime of a session (in seconds) after which it's considered invalid and should not 152 public void setSessionTimeout(int seconds) argument 154 if (seconds < 0) { 155 throw new IllegalArgumentException("seconds < 0"); 157 timeout = seconds;
|