HomeSort by: relevance | last modified time | path
    Searched defs:Time (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
CachePruning.cpp 31 sys::TimePoint<> Time;
38 return std::tie(Time, Other.Size, Path) <
39 std::tie(Other.Time, Size, Other.Path);
143 /// Prune the cache of files that haven't been accessed in a long time.
185 // Check whether the time stamp is older than our pruning interval.
198 // notice at the same time that the timestamp is out-of-date.
203 // Order by time of last use so that recently used files are preserved.
  /src/external/bsd/ntp/dist/ntpd/
check_y2k.c 30 "#include ntp.h". I have not taken the time to reduce the clutter. */
128 static int year0 = 1900; /* sarting year for NTP time */
129 static int yearend; /* ending year we test for NTP time.
131 **year in which NTP time overflows.
135 **max time, by which time the earth
137 static time_t Time;
150 Time = time( (time_t *)NULL )
155 LocalTime = *localtime( &Time );
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Timer.h 27 double WallTime; ///< Wall clock time elapsed in seconds.
28 double UserTime; ///< User time elapsed.
29 double SystemTime; ///< System time elapsed.
37 /// Get the current time and memory usage. If Start is true we get the memory
38 /// usage before the time, otherwise we get time before memory usage. This
39 /// matters if the time to get the memory usage is significant and shouldn't
51 // Sort by Wall Time elapsed, as it is the only thing really accurate
70 /// Print the current time record to \p OS, with a breakdown showing
71 /// contributions to the \p Total time record
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/Windows/
WindowsSupport.h 201 inline std::chrono::nanoseconds toDuration(FILETIME Time) {
203 TimeInteger.LowPart = Time.dwLowDateTime;
204 TimeInteger.HighPart = Time.dwHighDateTime;
210 inline TimePoint<> toTimePoint(FILETIME Time) {
212 TimeInteger.LowPart = Time.dwLowDateTime;
213 TimeInteger.HighPart = Time.dwHighDateTime;
227 FILETIME Time;
228 Time.dwLowDateTime = TimeInteger.LowPart;
229 Time.dwHighDateTime = TimeInteger.HighPart;
230 return Time;
    [all...]
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
osunixxf.c 58 #include <sys/time.h>
881 struct timespec Time;
953 * The interface to sem_timedwait is an absolute time, so we need to
954 * get the current time, then add in the millisecond Timeout value.
956 if (clock_gettime (CLOCK_REALTIME, &Time) == -1)
962 Time.tv_sec += (MsecTimeout / ACPI_MSEC_PER_SEC);
963 Time.tv_nsec += ((MsecTimeout % ACPI_MSEC_PER_SEC) * ACPI_NSEC_PER_MSEC);
967 if (Time.tv_nsec >= ACPI_NSEC_PER_SEC)
969 Time.tv_sec += (Time.tv_nsec / ACPI_NSEC_PER_SEC)
1192 struct timeval time; local
    [all...]
  /src/external/bsd/openldap/dist/contrib/slapd-modules/comp_match/
crl.h 87 typedef struct Time /* CHOICE */
187 ComponentTime* revocationDate; /* Time */
287 ComponentTime* thisUpdate; /* Time */
288 ComponentTime* nextUpdate; /* Time OPTIONAL */
336 ComponentTime* notBefore; /* Time */
337 ComponentTime* notAfter; /* Time */
certificate.h 120 typedef struct Time /* CHOICE */
204 ComponentTime* notBefore; /* Time */
205 ComponentTime* notAfter; /* Time */
  /src/crypto/external/bsd/openssl/dist/ssl/
s3_lib.c 4509 * good time to do it. If |initok| is true then we are being called from inside
4576 unsigned long Time = (unsigned long)time(NULL);
4579 l2n(Time, p);
  /src/crypto/external/bsd/openssl.old/dist/ssl/
s3_lib.c 4519 * good time to do it. If |initok| is true then we are being called from inside
4586 unsigned long Time = (unsigned long)time(NULL);
4589 l2n(Time, p);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/PerfJITEvents/
PerfJITEventListener.cpp 37 #include <time.h> // clock_gettime(), time(), localtime_r() */
296 time_t Time;
316 time(&Time);
317 localtime_r(&Time, &LocalTime);
  /src/crypto/external/apache2/openssl/dist/ssl/
s3_lib.c 5107 * good time to do it. If |initok| is true then we are being called from inside
5181 unsigned long Time = (unsigned long)time(NULL);
5184 l2n(Time, p);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
BranchFolding.cpp 435 unsigned Time = 0;
440 Time += 10;
442 Time += 2;
444 ++Time;
446 return Time;
1039 // a compile-time infinite loop repeatedly doing and undoing the same
1689 // the (current) next block. To avoid a possible compile-time
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 1616 SDValue Time = N->getOperand(3);
1618 if (Time.hasOneUse()) {
1619 unsigned BitWidth = Time.getValueSizeInBits();
1625 if (TLI.ShrinkDemandedConstant(Time, DemandedMask, TLO) ||
1626 TLI.SimplifyDemandedBits(Time, DemandedMask, Known, TLO))
  /src/external/bsd/ntp/dist/parseutil/
dcfd.c 56 #include <sys/time.h>
59 #include <time.h>
148 * do not set/adjust system time
153 * time that passes between start of DCF impulse and time stamping (fine
160 * usable or we have the correct time
200 #define DCFB_ANNOUNCE 0x0001 /* switch time zone warning (DST switch) */
205 struct clocktime /* clock time broken up from time code */
248 #define CVT_BADTIME 0x00000040 /* invalid time */
    [all...]
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
mDNSEmbeddedAPI.h 32 memory requirements, with absolutely no uncertainty or run-time variation,
299 kDNSType_TSR = 65323 // Time since received, private for now, will update when allocated by IANA
516 // expires, and has no obligation to contact the authoritative server again until that time arrives.
850 mDNSu32 refresh; // Time in seconds that a slave waits after successful replication of the database before it attempts replication again
851 mDNSu32 retry; // Time in seconds that a slave waits after an unsuccessful replication attempt before it attempts replication again
852 mDNSu32 expire; // Time in seconds that a slave holds on to old data while replication attempts remain unsuccessful
920 // TSR rdata 14 bytes (opt 2, len 2, time 4, hash 4, index 2)
1091 mDNSu32 upseconds; // Time since last NAT engine reboot, in seconds
1110 mDNSu32 upseconds; // Time since last NAT engine reboot, in seconds
1231 mDNSs32 ExpiryTime; // Time this mapping expires, or zero if no mappin
    [all...]

Completed in 51 milliseconds