Home
last modified time | relevance | path

Searched defs:seconds (Results 1 – 25 of 199) sorted by relevance

12345678

/external/webrtc/webrtc/system_wrappers/include/
Dntp_time.h24 NtpTime(uint32_t seconds, uint32_t fractions) in NtpTime()
33 void Set(uint32_t seconds, uint32_t fractions) { in Set()
47 uint32_t seconds() const { return seconds_; } in seconds() function
/external/autotest/client/cros/
Dsys_power.py99 def prepare_wakeup(seconds): argument
169 def kernel_suspend(seconds, state='mem'): argument
202 def idle_suspend(seconds): argument
226 def memory_suspend(seconds, size=0): argument
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DTimeValue.h89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_() argument
198 SecondsType seconds() const { return seconds_; } in seconds() function
266 void getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const { in getTimespecTime()
284 void seconds (SecondsType sec ) { in seconds() function
333 void fromEpochTime( SecondsType seconds ) { in fromEpochTime()
/external/llvm/include/llvm/Support/
DTimeValue.h101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_() argument
207 SecondsType seconds() const { return seconds_; } in seconds() function
267 void getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const { in getTimespecTime()
285 void seconds (SecondsType sec ) { in seconds() function
334 void fromEpochTime( SecondsType seconds ) { in fromEpochTime()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DTimeValue.h101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_() argument
207 SecondsType seconds() const { return seconds_; } in seconds() function
267 void getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const { in getTimespecTime()
285 void seconds (SecondsType sec ) { in seconds() function
334 void fromEpochTime( SecondsType seconds ) { in fromEpochTime()
/external/protobuf/src/google/protobuf/util/
Dtime_util.cc62 Timestamp CreateNormalized(int64 seconds, int64 nanos) { in CreateNormalized()
82 Duration CreateNormalized(int64 seconds, int64 nanos) { in CreateNormalized()
116 string FormatTime(int64 seconds, int32 nanos) { in FormatTime()
120 bool ParseTime(const string& value, int64* seconds, int32* nanos) { in ParseTime()
124 void CurrentTime(int64* seconds, int32* nanos) { in CurrentTime()
150 int64 seconds; in FromString() local
160 int64 seconds; in GetCurrentTime() local
170 int64 seconds = duration.seconds(); in ToString() local
211 int64 seconds = strto64(seconds_part.c_str(), &end, 10); in FromString() local
247 Duration TimeUtil::SecondsToDuration(int64 seconds) { in SecondsToDuration()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
DDurationTest.cs106 public void ToTimeSpan_Invalid(long seconds, int nanoseconds) in ToTimeSpan_Invalid()
117 public void ToTimeSpan_Valid(long seconds, int nanoseconds) in ToTimeSpan_Valid()
DTimestampTest.cs69 public void ToDateTime_OutOfRange(long seconds, int nanoseconds) in ToDateTime_OutOfRange()
81 public void ToDateTime_ValidBoundaries(long seconds, int nanoseconds) in ToDateTime_ValidBoundaries()
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DDurationPartial.cs65 internal static bool IsNormalized(long seconds, int nanoseconds) in IsNormalized()
164 internal static Duration Normalize(long seconds, int nanoseconds) in Normalize()
197 internal static string ToJson(long seconds, int nanoseconds, bool diagnosticOnly) in ToJson()
DTimestampPartial.cs48 private static bool IsNormalized(long seconds, int nanoseconds) => in IsNormalized()
173 internal static Timestamp Normalize(long seconds, int nanoseconds) in Normalize()
199 internal static string ToJson(long seconds, int nanoseconds, bool diagnosticOnly) in ToJson()
/external/autotest/client/site_tests/power_Resume/
Dpower_Resume.py35 def run_once(self, max_devs_returned=10, seconds=0, argument
45 def _suspend_once(self, max_devs_returned, seconds, ignore_kernel_warns): argument
/external/protobuf/src/google/protobuf/stubs/
Dtime.cc211 bool SecondsToDateTime(int64 seconds, DateTime* time) { in SecondsToDateTime()
256 bool DateTimeToSeconds(const DateTime& time, int64* seconds) { in DateTimeToSeconds()
264 void GetCurrentTime(int64* seconds, int32* nanos) { in GetCurrentTime()
271 string FormatTime(int64 seconds, int32 nanos) { in FormatTime()
285 bool ParseTime(const string& value, int64* seconds, int32* nanos) { in ParseTime()
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DTimeUtil.java155 long seconds = date.getTime() / MILLIS_PER_SECOND; in parseTimestamp() local
199 long seconds = duration.getSeconds(); in toString() local
243 long seconds = Long.parseLong(secondValue); in parseDuration() local
427 long seconds = (long) result; in multiply() local
469 long seconds = value.divide( in createDurationFromBigInteger() local
477 private static Duration normalizedDuration(long seconds, int nanos) { in normalizedDuration()
496 private static Timestamp normalizedTimestamp(long seconds, int nanos) { in normalizedTimestamp()
/external/vogar/src/vogar/util/
DTimeUtilities.java30 long seconds = duration % 60; in msToIsoString() local
81 long seconds = duration % 60; in nsToString() local
/external/autotest/server/site_tests/hardware_MemoryIntegrity/
Dhardware_MemoryIntegrity.py54 def _wait(self, seconds, suspend): argument
90 def run_once(self, client_ip=None, seconds=3600, size=0, suspend=True): argument
/external/protobuf/src/google/protobuf/
Dduration.proto89 int64 seconds = 1; field
Dtimestamp.proto104 int64 seconds = 1; field
/external/autotest/client/tests/flaky_test/
Dflaky_test.py11 def run_once(self, seconds=1): argument
/external/autotest/client/site_tests/power_KernelSuspend/
Dpower_KernelSuspend.py13 def run_once(self, seconds=10): argument
/external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/
Dconvert_overflow.pass.cpp25 void f(std::chrono::seconds) in f()
/external/libcxx/utils/google-benchmark/src/
Dsleep.cc30 void SleepForSeconds(double seconds) { in SleepForSeconds()
/external/syslinux/com32/lib/sys/
Dsleep.c19 unsigned int sleep(unsigned int seconds) in sleep()
/external/autotest/client/tests/sleeptest/
Dsleeptest.py7 def run_once(self, seconds=1): argument
/external/google-benchmark/src/
Dsleep.cc31 void SleepForSeconds(double seconds) { in SleepForSeconds()
/external/autotest/server/site_tests/dummy_FlakyTestServer/
Dflaky_test.py11 def run_once(self, seconds=1): argument

12345678