HomeSort by relevance Sort by last modified time
    Searched refs:seconds (Results 126 - 150 of 1528) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timingmodule.c 27 seconds(PyObject *self) function
48 {"seconds", (PyCFunction)seconds, METH_NOARGS},
  /external/autotest/client/tests/ebizzy/
ebizzy.py 24 seconds=100, num_threads=100):
30 seconds, num_threads)
  /external/autotest/client/tests/profiler_test/
profiler_test.py 25 def execute(self, seconds=5):
27 Add and start the profiler, sleep some seconds, stop and delete it.
32 @param seconds: Number of seconds to sleep while the profiler is
40 time.sleep(seconds)
  /external/golang-protobuf/ptypes/duration/
duration.pb.go 31 // as a count of seconds and fractions of seconds at nanosecond
45 // duration.seconds = end.seconds - start.seconds;
48 // if (duration.seconds < 0 && duration.nanos > 0) {
49 // duration.seconds += 1;
51 // } else if (durations.seconds > 0 && duration.nanos < 0) {
52 // duration.seconds -= 1;
62 // end.seconds = start.seconds + duration.seconds
    [all...]
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.comparisons/
op_equal.pass.cpp 32 std::chrono::seconds s1(3);
33 std::chrono::seconds s2(3);
38 std::chrono::seconds s1(3);
39 std::chrono::seconds s2(4);
75 constexpr std::chrono::seconds s1(3);
76 constexpr std::chrono::seconds s2(3);
81 constexpr std::chrono::seconds s1(3);
82 constexpr std::chrono::seconds s2(4);
op_less.pass.cpp 42 std::chrono::seconds s1(3);
43 std::chrono::seconds s2(3);
50 std::chrono::seconds s1(3);
51 std::chrono::seconds s2(4);
99 constexpr std::chrono::seconds s1(3);
100 constexpr std::chrono::seconds s2(3);
107 constexpr std::chrono::seconds s1(3);
108 constexpr std::chrono::seconds s2(4);
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.literals/
literals1.pass.cpp 29 seconds s = 24s;
30 assert ( s == seconds(24));
  /external/libcxx/test/std/utilities/time/time.point/time.point.cons/
duration.pass.cpp 30 std::chrono::time_point<Clock, Duration> t(std::chrono::seconds(3));
39 constexpr std::chrono::time_point<Clock, Duration> t(std::chrono::seconds(3));
  /external/llvm/include/llvm/Support/
TimeValue.h 78 typedef int64_t SecondsType; ///< Type used for representing seconds.
97 /// Caller provides the exact value in seconds and nanoseconds. The
100 explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0)
101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
103 /// Caller provides the exact value as a double in seconds with the
204 /// Returns only the seconds component of the TimeValue. The nanoseconds
206 /// @brief Retrieve the seconds component
207 SecondsType seconds() const { return seconds_; } function in class:llvm::sys::TimeValue
209 /// Returns only the nanoseconds component of the TimeValue. The seconds
248 /// Converts the TimeValue into the corresponding number of seconds
285 void seconds (SecondsType sec ) { function in class:llvm::sys::TimeValue
    [all...]
  /external/protobuf/python/google/protobuf/internal/
well_known_types.py 107 total_sec = self.seconds + (self.nanos - nanos) // _NANOS_PER_SECOND
108 seconds = total_sec % _SECONDS_PER_DAY
109 days = (total_sec - seconds) // _SECONDS_PER_DAY
110 dt = datetime(1970, 1, 1) + timedelta(days, seconds)
131 accepted as long as they fit into nano-seconds precision.
156 seconds = td.seconds + td.days * _SECONDS_PER_DAY
177 seconds -= (int(timezone[1:pos])*60+int(timezone[pos+1:]))*60
179 seconds += (int(timezone[1:pos])*60+int(timezone[pos+1:]))*60
180 # Set seconds and nano
    [all...]
  /external/python/cpython2/Modules/
timingmodule.c 27 seconds(PyObject *self) function
48 {"seconds", (PyCFunction)seconds, METH_NOARGS},
  /external/swiftshader/src/Main/
Config.cpp 67 static double fpsTime = sw::Timer::seconds();
69 double time = sw::Timer::seconds();
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
TimeValue.h 68 typedef int64_t SecondsType; ///< Type used for representing seconds.
85 /// Caller provides the exact value in seconds and nanoseconds. The
88 explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0)
89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
91 /// Caller provides the exact value as a double in seconds with the
195 /// Returns only the seconds component of the TimeValue. The nanoseconds
197 /// @brief Retrieve the seconds component
198 SecondsType seconds() const { return seconds_; } function in class:llvm::sys::TimeValue
200 /// Returns only the nanoseconds component of the TimeValue. The seconds
248 /// Converts the TimeValue into the corresponding number of seconds
284 void seconds (SecondsType sec ) { function in class:llvm::sys::TimeValue
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Chrono.h 43 LLVM_ATTRIBUTE_ALWAYS_INLINE inline TimePoint<std::chrono::seconds>
46 return time_point_cast<seconds>(system_clock::from_time_t(T));
TimeValue.h 78 typedef int64_t SecondsType; ///< Type used for representing seconds.
97 /// Caller provides the exact value in seconds and nanoseconds. The
100 explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0)
101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
103 /// Caller provides the exact value as a double in seconds with the
204 /// Returns only the seconds component of the TimeValue. The nanoseconds
206 /// @brief Retrieve the seconds component
207 SecondsType seconds() const { return seconds_; } function in class:llvm::sys::TimeValue
209 /// Returns only the nanoseconds component of the TimeValue. The seconds
248 /// Converts the TimeValue into the corresponding number of seconds
285 void seconds (SecondsType sec ) { function in class:llvm::sys::TimeValue
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
TimedTrace.cc 52 double seconds = _timeEllapsedSec - minutes * 60; local
56 minutes, seconds, message);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.comparisons/
op_equal.pass.cpp 32 std::chrono::seconds s1(3);
33 std::chrono::seconds s2(3);
38 std::chrono::seconds s1(3);
39 std::chrono::seconds s2(4);
75 constexpr std::chrono::seconds s1(3);
76 constexpr std::chrono::seconds s2(3);
81 constexpr std::chrono::seconds s1(3);
82 constexpr std::chrono::seconds s2(4);
op_less.pass.cpp 42 std::chrono::seconds s1(3);
43 std::chrono::seconds s2(3);
50 std::chrono::seconds s1(3);
51 std::chrono::seconds s2(4);
99 constexpr std::chrono::seconds s1(3);
100 constexpr std::chrono::seconds s2(3);
107 constexpr std::chrono::seconds s1(3);
108 constexpr std::chrono::seconds s2(4);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.literals/
literals1.pass.cpp 29 seconds s = 24s;
30 assert ( s == seconds(24));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.point/time.point.cons/
duration.pass.cpp 30 std::chrono::time_point<Clock, Duration> t(std::chrono::seconds(3));
39 constexpr std::chrono::time_point<Clock, Duration> t(std::chrono::seconds(3));
  /tools/test/connectivity/acts/framework/acts/controllers/relay_lib/
dongles.py 68 Holds down the 'ACTION' buttons for PAIRING_MODE_WAIT_TIME seconds.
71 seconds=PAIRING_MODE_WAIT_TIME)
76 seconds=SINGLE_ACTION_SHORT_WAIT_TIME)
81 seconds=SINGLE_ACTION_LONG_WAIT_TIME)
116 Holds down the 'ACTION' buttons for a little over 5 seconds.
119 seconds=PAIRING_MODE_WAIT_TIME)
124 seconds=SINGLE_ACTION_SHORT_WAIT_TIME)
130 seconds=SINGLE_ACTION_LONG_WAIT_TIME)
136 seconds=SINGLE_ACTION_SHORT_WAIT_TIME)
142 seconds=SINGLE_ACTION_SHORT_WAIT_TIME
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
TimeUtilities.java 30 long seconds = duration % 60; local
45 result.append(seconds);
81 long seconds = duration % 60; local
102 result.append(seconds);
109 * Converts nanoseconds into (fractional) seconds.
  /external/autotest/client/site_tests/autoupdate_DisconnectReconnectNetwork/
autoupdate_DisconnectReconnectNetwork.py 61 seconds = 1
62 while seconds < time_without_network:
65 seconds = seconds + 1
  /external/curl/docs/cmdline-opts/
keepalive-time.d 2 Arg: <seconds>
13 unspecified, the option defaults to 60 seconds.
  /external/libchrome/base/time/
time_posix.cc 132 time_t seconds = 0; local
134 seconds = InSeconds();
135 microseconds -= seconds * Time::kMicrosecondsPerSecond;
138 {seconds,
178 // Combine seconds and microseconds in a 64-bit field containing microseconds
198 SysTime seconds; // Seconds since epoch. local
203 seconds = milliseconds / kMillisecondsPerSecond;
209 seconds = (milliseconds - kMillisecondsPerSecond + 1) /
218 SysTimeToTimeStruct(seconds, &timestruct, is_local)
256 SysTime seconds; local
    [all...]

Completed in 921 milliseconds

1 2 3 4 56 7 8 91011>>