HomeSort by relevance Sort by last modified time
    Searched full:epoch (Results 1 - 25 of 655) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/shared_impl/
time_conversion_unittest.cc 54 // Should be able to round-trip from epoch time.
55 base::Time epoch = base::Time::UnixEpoch(); local
56 base::Time converted = ppapi::PPTimeToTime(TimeToPPTime(epoch));
58 abs(static_cast<int>((converted - epoch).ToInternalValue())));
61 base::Time one_second_from_epoch = epoch + base::TimeDelta::FromSeconds(1);
63 ppapi::TimeToPPTime(one_second_from_epoch) - ppapi::TimeToPPTime(epoch);
66 // Epoch time should be equal to a PP_Time of 0.0.
67 EXPECT_GE(kTimeSecondsSlop, fabs(ppapi::TimeToPPTime(epoch) - 0.0));
70 (ppapi::PPTimeToTime(0.0) - epoch).ToInternalValue())));
  /external/llvm/unittests/Support/
TimeValueTest.cpp 26 sys::TimeValue epoch; local
30 epoch.fromWin32Time(ft1970);
33 EXPECT_EQ(0u, epoch.toEpochTime());
34 EXPECT_EQ(ns, static_cast<uint32_t>(epoch.nanoseconds()));
37 EXPECT_EQ(ft1970, epoch.toWin32Time());
  /external/jemalloc/test/unit/
mallctl.c 5 uint64_t epoch; local
15 assert_d_eq(mallctl("epoch", NULL, NULL, &epoch, sizeof(epoch)-1),
17 assert_d_eq(mallctl("epoch", NULL, NULL, &epoch, sizeof(epoch)+1),
20 sz = sizeof(epoch)-1;
21 assert_d_eq(mallctl("epoch", &epoch, &sz, NULL, 0), EINVAL
42 uint64_t epoch; local
    [all...]
stats.c 61 uint64_t epoch; local
70 assert_d_eq(mallctl("epoch", NULL, NULL, &epoch, sizeof(epoch)), 0,
101 uint64_t epoch; local
119 assert_d_eq(mallctl("epoch", NULL, NULL, &epoch, sizeof(epoch)), 0,
166 uint64_t epoch, nmalloc, ndalloc, nrequests; local
181 assert_d_eq(mallctl("epoch", NULL, NULL, &epoch, sizeof(epoch)), 0
215 uint64_t epoch, nmalloc, ndalloc, nrequests; local
259 uint64_t epoch, nmalloc, ndalloc, nrequests, nfills, nflushes; local
331 uint64_t epoch, nmalloc, ndalloc, nrequests; local
    [all...]
  /external/chromium_org/components/metrics/
client_info.h 25 // The installation date: represented as an epoch time in seconds.
28 // The date on which metrics reporting was enabled: represented as an epoch
  /external/libsepol/man/man8/
genpolbools.8 1 .TH "genpolbools" "8" "11 August 2004" "sds@epoch.ncsc.mil" "SELinux Command Line documentation"
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
timefuncs.h 19 /* Get the current time since the epoch in seconds */
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
timefuncs.h 19 /* Get the current time since the epoch in seconds */
  /external/chromium_org/third_party/cld/base/
vlog_is_on.h 50 // We pack an int16 verbosity level and an int16 epoch into an
52 // whether the site should log, and the epoch determines whether the
59 // with a stale epoch and a verbosity level of kUseFlag.
91 // comparing its epoch to this global epoch. Whenever the program's
93 // global epoch is advanced, invalidating all site epochs.
99 // Log sites use FLAGS_v by default, and have an initial epoch of 0.
102 // The global epoch is the least significant half of an Atomic32, and
108 // The least significant half of a site is the epoch.
114 // Construct a logging site from a logging level and epoch
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_clock.cc 126 u64 epoch = src->clk_[tid].epoch; local
127 if (clk_[tid].epoch < epoch) {
128 clk_[tid].epoch = epoch;
135 last_acquire_ = clk_[tid_].epoch;
145 u64 epoch = src->clk_[i].epoch; local
146 if (clk_[i].epoch < epoch)
    [all...]
tsan_mutexset.cc 25 void MutexSet::Add(u64 id, bool write, u64 epoch) {
30 descs_[i].epoch = epoch;
39 if (descs_[i].epoch < minepoch) {
40 minepoch = descs_[i].epoch;
50 descs_[size_].epoch = epoch;
tsan_clock.h 22 u64 epoch : kClkBits; member in struct:__tsan::ClockElem
37 return clk_[tid].epoch;
61 return clk_[tid].epoch;
67 DCHECK_GE(v, clk_[tid_].epoch);
68 clk_[tid_].epoch = v;
72 clk_[tid_].epoch++;
  /external/libogg/
libogg.spec 13 # We're forced to use an epoch since both Red Hat and Ximian use it in their
15 Epoch: 2
18 Provides: %{name} = %{epoch}:1.0rc3-%{release}
19 Provides: %{name} = %{epoch}:1.0beta4-%{release}
31 Provides: %{name}-devel = %{epoch}:1.0rc3-%{release}
32 Provides: %{name}-devel = %{epoch}:1.0beta4-%{release}
libogg.spec.in 13 # We're forced to use an epoch since both Red Hat and Ximian use it in their
15 Epoch: 2
18 Provides: %{name} = %{epoch}:1.0rc3-%{release}
19 Provides: %{name} = %{epoch}:1.0beta4-%{release}
31 Provides: %{name}-devel = %{epoch}:1.0rc3-%{release}
32 Provides: %{name}-devel = %{epoch}:1.0beta4-%{release}
  /external/chromium_org/components/metrics/proto/
user_action_event.proto 19 // The timestamp for the event, in seconds since the epoch.
  /external/chromium_org/ppapi/api/
pp_time.idl 13 * to the browser and is defined as the number of seconds since the Epoch
27 * epoch, so the most you can do is compare two values.
  /external/chromium_org/ppapi/c/
pp_time.h 26 * to the browser and is defined as the number of seconds since the Epoch
40 * epoch, so the most you can do is compare two values.
  /system/core/liblog/
log_time.cpp 26 const timespec log_time::EPOCH = { 0, 0 };
137 // No concept of negative time, clamp to EPOCH
139 return *this = EPOCH;
154 // No concept of negative time, clamp to EPOCH
156 return *this = EPOCH;
  /external/chromium_org/sync/protocol/
favicon_tracking_specifics.proto 20 // since linux epoch).
  /external/chromium_org/sync/util/
time.h 19 // since the Unix epoch).
  /external/libsepol/include/sepol/policydb/
symtab.h 2 /* Author : Stephen Smalley, <sds@epoch.ncsc.mil> */
  /external/oprofile/opjitconv/
opjitconv.h 54 /* seconds since epoch when the code was created */
56 /* seconds since epoch when the code was overwritten */
66 /* seconds since epoch when the code was created */
68 /* seconds since epoch when the code was overwritten */
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
time.so 
  /external/checkpolicy/
checkpolicy.8 55 and edited by Stephen Smalley <sds@epoch.ncsc.mil>.
56 The program was written by Stephen Smalley <sds@epoch.ncsc.mil>.
  /external/chromium_org/third_party/skia/tools/skpdiff/
skpdiff_util.h 30 * Get a positive monotonic real-time measure of the amount of seconds since some undefined epoch.
32 * @return Amount of time in seconds since some epoch

Completed in 1160 milliseconds

1 2 3 4 5 6 7 8 91011>>