Home
last modified time | relevance | path

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

12345678910>>...16

/external/python/cpython3/Tools/importbench/
Dimportbench.py20 def bench(name, cleanup=lambda: None, *, seconds=1, repeat=3): argument
40 def from_cache(seconds, repeat): argument
51 def builtin_mod(seconds, repeat): argument
61 def source_wo_bytecode(seconds, repeat): argument
81 def benchmark_wo_bytecode(seconds, repeat): argument
100 def source_writing_bytecode(seconds, repeat): argument
119 def writing_bytecode_benchmark(seconds, repeat): argument
135 def source_using_bytecode(seconds, repeat): argument
151 def using_bytecode_benchmark(seconds, repeat): argument
/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.cc64 Timestamp CreateNormalized(int64 seconds, int64 nanos) { in CreateNormalized()
84 Duration CreateNormalized(int64 seconds, int64 nanos) { in CreateNormalized()
118 std::string FormatTime(int64 seconds, int32 nanos) { in FormatTime()
122 bool ParseTime(const std::string& value, int64* seconds, int32* nanos) { in ParseTime()
126 void CurrentTime(int64* seconds, int32* nanos) { in CurrentTime()
161 int64 seconds; in FromString() local
171 int64 seconds; in GetCurrentTime() local
181 int64 seconds = duration.seconds(); in ToString() local
222 int64 seconds = strto64(seconds_part.c_str(), &end, 10); in FromString() local
258 Duration TimeUtil::SecondsToDuration(int64 seconds) { in SecondsToDuration()
[all …]
/external/autotest/client/cros/power/
Dsys_power.py113 def prepare_wakeup(seconds): argument
253 def kernel_suspend(seconds, state='mem'): argument
287 def idle_suspend(seconds): argument
312 def memory_suspend(seconds, size=0): argument
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DDurations.java128 public static boolean isValid(long seconds, int nanos) { in isValid()
181 long seconds = duration.getSeconds(); in checkValid() local
217 long seconds = duration.getSeconds(); in toString() local
258 long seconds = Long.parseLong(secondValue); in parse() local
305 public static Duration fromSeconds(long seconds) { in fromSeconds()
439 static Duration normalizedDuration(long seconds, int nanos) { in normalizedDuration()
DTimestamps.java156 public static boolean isValid(long seconds, int nanos) { in isValid()
169 long seconds = timestamp.getSeconds(); in checkValid() local
206 long seconds = timestamp.getSeconds(); in toString() local
257 long seconds = date.getTime() / MILLIS_PER_SECOND; in parse() local
286 public static Timestamp fromSeconds(long seconds) { in fromSeconds()
387 static Timestamp normalizedTimestamp(long seconds, int nanos) { in normalizedTimestamp()
/external/webrtc/system_wrappers/include/
Dntp_time.h26 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 { in seconds() function
/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/pigweed/pw_chrono/public/pw_chrono/internal/
Dsystem_clock_macros.h40 #define PW_SYSTEM_CLOCK_S_CEIL(seconds) \ argument
49 #define PW_SYSTEM_CLOCK_S_FLOOR(seconds) \ argument
59 #define PW_SYSTEM_CLOCK_S(seconds) PW_SYSTEM_CLOCK_S_CEIL(seconds) argument
/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/compatibility_tests/v3.0.0/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/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()
Dtime_test.cc68 int64 seconds; in TEST() local
153 int64 seconds; in TEST() local
233 int64 seconds; in TEST() local
/external/opencensus-java/api/src/main/java/io/opencensus/common/
DDuration.java53 public static Duration create(long seconds, int nanos) { in create()
87 long seconds = millis / MILLIS_PER_SECOND; in fromMillis() local
/external/kotlinx.coroutines/kotlinx-coroutines-debug/src/junit4/
DCoroutinesTimeout.kt67 public fun seconds( method
78 public fun seconds( method
/external/autotest/client/site_tests/power_Resume/
Dpower_Resume.py46 def run_once(self, max_devs_returned=10, seconds=0, argument
86 def _suspend_once(self, max_devs_returned, seconds, ignore_kernel_warns, argument
/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/junit/src/main/java/org/junit/rules/
DTimeout.java111 public static Timeout seconds(long seconds) { in seconds() method in Timeout
/external/pigweed/pw_protobuf/pw_protobuf_test_protos/
Dimported.proto19 uint64 seconds = 1; field
/external/protobuf/src/google/protobuf/
Dduration.proto107 int64 seconds = 1; field

12345678910>>...16