HomeSort by relevance Sort by last modified time
    Searched refs:TimeValue (Results 1 - 13 of 13) 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...]
FileSystem.h 36 #include "llvm/Support/TimeValue.h"
194 TimeValue getLastModificationTime() const;
546 error_code setLastModificationAndAccessTime(int FD, TimeValue Time);
    [all...]
  /external/llvm/unittests/Support/
TimeValueTest.cpp 11 #include "llvm/Support/TimeValue.h"
17 TEST(TimeValue, time_t) {
18 sys::TimeValue now = sys::TimeValue::now();
23 TEST(TimeValue, Win32FILETIME) {
26 sys::TimeValue epoch;
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/Object/
Archive.h 41 sys::TimeValue getLastModified() const;
76 sys::TimeValue getLastModified() const {
  /external/llvm/lib/Object/
Archive.cpp 57 sys::TimeValue ArchiveMemberHeader::getLastModified() const {
63 sys::TimeValue Ret;
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 598 const sys::TimeValue &ModTime, unsigned UID,
610 const sys::TimeValue &ModTime, unsigned UID,
617 const sys::TimeValue &ModTime, unsigned UID,
682 printMemberHeader(Out, "", sys::TimeValue::now(), 0, 0, 0, 0);
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 34 #include "llvm/Support/TimeValue.h"
854 Header.TimeDateStamp = sys::TimeValue::now().toEpochTime();

Completed in 4680 milliseconds