HomeSort by relevance Sort by last modified time
    Searched refs:TimeValue (Results 1 - 14 of 14) sorted by null

  /external/llvm/lib/Support/
TimeValue.cpp 1 //===-- TimeValue.cpp - Implement OS TimeValue Concept ----------*- C++ -*-===//
10 // This file implements the operating system TimeValue concept.
14 #include "llvm/Support/TimeValue.h"
20 const TimeValue::SecondsType
21 TimeValue::PosixZeroTimeSeconds = -946684800;
22 const TimeValue::SecondsType
23 TimeValue::Win32ZeroTimeSeconds = -12591158400ULL;
25 const TimeValue TimeValue::MinTime = TimeValue ( INT64_MIN,0 )
    [all...]
Process.cpp 59 static TimeValue getElapsedWallTime() {
60 static TimeValue &StartTime = *new TimeValue(TimeValue::now());
61 return TimeValue::now() - StartTime;
69 static volatile TimeValue DummyTimeValue = getElapsedWallTime();
73 TimeValue self_process::get_wall_time() const {
Android.mk 67 TimeValue.cpp \
Timer.cpp 131 sys::TimeValue now(0,0), user(0,0), sys(0,0);
  /external/llvm/include/llvm/Support/
Process.h 30 #include "llvm/Support/TimeValue.h"
71 virtual TimeValue get_user_time() const = 0;
77 virtual TimeValue get_system_time() const = 0;
83 virtual TimeValue get_wall_time() const = 0;
108 virtual TimeValue get_user_time() const;
109 virtual TimeValue get_system_time() const;
110 virtual TimeValue get_wall_time() const;
150 /// support collection of these metrics, a zero TimeValue will be for both
152 /// \param elapsed Returns the TimeValue::now() giving current time
155 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time
    [all...]
TimeValue.h 1 //===-- TimeValue.h - Declare OS TimeValue Concept --------------*- C++ -*-===//
10 // This header file declares the operating system TimeValue concept.
23 /// range of TimeValue spans many hundreds of billions of years both past and
24 /// present. The precision of TimeValue is to the nanosecond. However, the
26 /// the system clock. The TimeValue class is used in conjunction with several
31 class TimeValue {
37 /// A constant TimeValue representing the smallest time
41 static const TimeValue MinTime;
43 /// A constant TimeValue representing the largest tim
    [all...]
PathV1.h 19 #include "llvm/Support/TimeValue.h"
44 TimeValue modTime; ///< Time of file's modification
55 TimeValue getTimestamp() const { return modTime; }
    [all...]
  /external/llvm/unittests/Support/
TimeValue.cpp 1 //===- llvm/unittest/Support/TimeValue.cpp - Time Value tests -------------===//
11 #include "llvm/Support/TimeValue.h"
17 TEST(Support, TimeValue) {
18 sys::TimeValue now = sys::TimeValue::now();
ProcessTest.cpp 34 EXPECT_LT(TimeValue::MinTime, process::get_self()->get_user_time());
35 EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_user_time());
36 EXPECT_LT(TimeValue::MinTime, process::get_self()->get_system_time());
37 EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_system_time());
38 EXPECT_LT(TimeValue::MinTime, process::get_self()->get_wall_time());
39 EXPECT_GT(TimeValue::MaxTime, process::get_self()->get_wall_time());
  /external/llvm/include/llvm/Bitcode/
Archive.h 92 sys::TimeValue getModTime() const { return info.getTimestamp(); }
  /external/llvm/lib/Archive/
Archive.cpp 54 info.modTime = sys::TimeValue::now();
ArchiveWriter.cpp 300 uint64_t secondsSinceEpoch = sys::TimeValue::now().toEpochTime();
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovie.cpp 356 TimeValue val = GetMovieDuration(m_private->m_movie);
365 TimeValue val = GetMovieTime(m_private->m_movie, 0);
383 SetMovieTimeValue(m_private->m_movie, TimeValue(lroundf(time * scale)));
424 TimeValue val;
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 33 #include "llvm/Support/TimeValue.h"
825 Header.TimeDateStamp = sys::TimeValue::now().toEpochTime();

Completed in 4053 milliseconds