HomeSort by relevance Sort by last modified time
    Searched refs:Elapsed (Results 1 - 25 of 41) sorted by null

1 2

  /external/libchrome/base/timer/
elapsed_timer.cc 13 TimeDelta ElapsedTimer::Elapsed() const {
elapsed_timer.h 19 // Returns the time elapsed since object construction.
20 TimeDelta Elapsed() const;
  /external/libmojo/mojo/edk/system/
test_utils.h 38 // A simple "stopwatch" for measuring time elapsed from a given starting point.
45 // Returns the amount of time elapsed since the last call to |Start()| (in
47 MojoDeadline Elapsed();
test_utils.cc 67 MojoDeadline Stopwatch::Elapsed() {
waiter_unittest.cc 41 MojoDeadline* elapsed) {
48 *elapsed = elapsed_;
64 MojoDeadline elapsed; variable
68 elapsed = stopwatch.Elapsed();
75 elapsed_ = elapsed;
94 MojoDeadline elapsed; local
103 thread.WaitUntilDone(&result, &context, &elapsed);
106 EXPECT_LT(elapsed, test::EpsilonDeadline());
114 thread.WaitUntilDone(&result, &context, &elapsed);
210 MojoDeadline elapsed; local
245 MojoDeadline elapsed; local
    [all...]
  /external/v8/src/base/platform/
elapsed-timer.h 21 // |Elapsed()| or |HasExpired()|, and may be restarted using |Restart()|.
50 // Restarts the timer and returns the time elapsed since the previous start.
51 // This method is equivalent to obtaining the elapsed time with |Elapsed()|
58 TimeDelta elapsed = ticks - start_ticks_; local
59 DCHECK(elapsed.InMicroseconds() >= 0);
62 return elapsed;
65 // Returns the time elapsed since the previous start. This method may only
67 TimeDelta Elapsed() const {
69 TimeDelta elapsed = Now() - start_ticks_ local
    [all...]
  /external/v8/src/crankshaft/
compilation-phase.cc 26 isolate()->GetHStatistics()->SaveTiming(name_, timer_.Elapsed(), size);
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Utility.h 210 Append the appointed Elapsed time option to Buf, and move Buf to the end.
214 @param[out] Elapsed The pointer to the elapsed time value in
224 OUT UINT16 **Elapsed
228 Set the elapsed time based on the given instance and the pointer to the
229 elapsed time option.
231 @param[in] Elapsed The pointer to the position to append.
236 IN UINT16 *Elapsed,
Dhcp6Io.c 25 @param[in] Elapsed The pointer to the elapsed time value in the packet.
39 IN UINT16 *Elapsed,
62 // Save pointer to elapsed-time value so we can update it on retransmits.
64 TxCb->Elapsed = Elapsed;
821 @param[in] Elapsed The pointer to the elapsed time value to fill in.
832 IN UINT16 *Elapsed
881 // Update the elapsed time value.
    [all...]
Dhcp6Impl.h 216 UINT16 *Elapsed;
253 // StartTime is used to calculate the 'elapsed-time' option. Refer to RFC3315,
254 // the elapsed-time is amount of time since the client began its current DHCP transaction.
Dhcp6Utility.c 811 Append the appointed Elapsed time option to Buf, and move Buf to the end.
815 @param[out] Elapsed The pointer to the elapsed time value in
825 OUT UINT16 **Elapsed
829 // The format of elapsed time option:
835 // | elapsed-time |
840 // Fill the value of elapsed-time option type.
846 // Fill the len of elapsed-time option, which is fixed.
852 // Fill in elapsed time value with 0 value for now. The actual value is
856 *Elapsed = (UINT16 *) Buf;
    [all...]
  /external/webrtc/webrtc/p2p/base/
stunrequest.h 99 // Time elapsed since last send (in ms)
100 uint32_t Elapsed() const;
turnport.cc     [all...]
stunrequest.cc 184 uint32_t StunRequest::Elapsed() const {
  /external/libchrome/base/files/
file.cc 145 UMA_HISTOGRAM_TIMES("PlatformFile.FlushTime", timer.Elapsed());
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciSioSerialDxe/
SerialIo.c 1036 UINTN Elapsed;
1043 Elapsed = 0;
1100 // stall for a bit, increment time elapsed, and try again
1102 if (Elapsed >= Timeout) {
1110 Elapsed += TIMEOUT_STALL_INTERVAL;
1117 Elapsed = 0;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Impl.h 187 Set the elapsed time based on the given instance and the pointer to the
188 elapsed time option.
190 @param[in] Elapsed The pointer to the position to append.
195 IN UINT16 *Elapsed,
  /external/v8/src/compiler/
pipeline-statistics.cc 34 diff->delta_ = timer_.Elapsed();
  /external/v8/src/snapshot/
snapshot-common.cc 46 double ms = timer.Elapsed().InMillisecondsF();
72 double ms = timer.Elapsed().InMillisecondsF();
  /external/v8/tools/
parser-shell.cc 103 parse_time1 = timer.Elapsed();
117 parse_time2 = timer.Elapsed();
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/
Serial.c     [all...]
  /frameworks/rs/script_api/
rs_time.spec 29 Calendar time interpreted as seconds elapsed since the Epoch (00:00:00 on
56 summary: Elapsed time since last call
  /external/v8/src/asmjs/
asm-js.cc 12 #include "src/base/platform/elapsed-timer.h"
182 double asm_wasm_time = asm_wasm_timer.Elapsed().InMillisecondsF();
196 double compile_time = compile_timer.Elapsed().InMillisecondsF();
336 instantiate_timer.Elapsed().InMillisecondsF());
  /external/ltp/utils/benchmark/kernbench-0.42/
kernbench 179 echo Elapsed Time `show_statistics $temp_elapsed` >> templog
  /external/v8/src/
counters.cc 53 ? timer_.Elapsed().InMicroseconds()
54 : timer_.Elapsed().InMilliseconds();
297 // Commit all the timer's elapsed time to the counters.

Completed in 735 milliseconds

1 2