HomeSort by relevance Sort by last modified time
    Searched refs:epoch (Results 26 - 50 of 133) sorted by null

12 3 4 5 6

  /prebuilts/go/darwin-x86/src/syscall/
syscall.go 84 // Unix epoch.
90 // Unix epoch.
95 // Nano returns ts as the number of nanoseconds elapsed since the Unix epoch.
100 // Nano returns tv as the number of nanoseconds elapsed since the Unix epoch.
  /prebuilts/go/linux-x86/src/syscall/
syscall.go 84 // Unix epoch.
90 // Unix epoch.
95 // Nano returns ts as the number of nanoseconds elapsed since the Unix epoch.
100 // Nano returns tv as the number of nanoseconds elapsed since the Unix epoch.
  /external/autotest/client/site_tests/platform_BootPerf/
platform_BootPerf.py 361 values measured as seconds since the epoch. The three "t"
365 epoch. Also estimate the worst-case error based on the time
374 boot" into "seconds since the epoch".
376 measured as "seconds since the epoch".
378 measured as "seconds since the epoch".
383 as seconds since the epoch, rounded to the
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_mutex.cc 120 RestoreStack(last.tid(), last.epoch(), &trace, 0);
171 thr->mset.Add(s->GetId(), true, thr->fast_state.epoch());
249 thr->mset.Add(s->GetId(), false, thr->fast_state.epoch());
377 thr->clock.set(tctx->tid, tctx->thr->fast_state.epoch());
397 // Can't increment epoch w/o writing to the trace as well.
409 // Can't increment epoch w/o writing to the trace as well.
420 thr->last_sleep_clock.set(tctx->tid, tctx->thr->fast_state.epoch());
439 thr->clock.set(thr->fast_state.epoch());
447 thr->clock.set(thr->fast_state.epoch());
448 thr->fast_synch_epoch = thr->fast_state.epoch();
    [all...]
tsan_rtl_report.cc 372 void RestoreStack(int tid, const u64 epoch, VarSizeStackTrace *stk,
374 // This function restores stack trace and mutex set for the thread/epoch.
376 // trace part, and then replaying the trace till the given epoch.
379 const int partidx = (epoch / kTracePartSize) % TraceParts();
381 if (epoch < hdr->epoch0 || epoch >= hdr->epoch0 + kTracePartSize)
383 CHECK_EQ(RoundDown(epoch, kTracePartSize), hdr->epoch0);
384 const u64 epoch0 = RoundDown(epoch, TraceSize());
385 const u64 eend = epoch % TraceSize();
387 DPrintf("#%d: RestoreStack epoch=%zu ebegin=%zu eend=%zu partidx=%d\n"
    [all...]
tsan_rtl.h 90 // epoch : kClkBits
93 FastState(u64 tid, u64 epoch) {
95 x_ |= epoch;
97 DCHECK_EQ(epoch, this->epoch());
119 u64 epoch() const { function in class:__tsan::FastState
125 u64 old_epoch = epoch();
127 DCHECK_EQ(old_epoch + 1, epoch());
155 return epoch() & mask;
175 // epoch : kClkBit
    [all...]
tsan_rtl.cc 110 ThreadState::ThreadState(Context *ctx, int tid, int unique_id, u64 epoch,
114 : fast_state(tid, epoch)
509 unsigned trace = (thr->fast_state.epoch() / kTracePartSize) % TraceParts();
511 hdr->epoch0 = thr->fast_state.epoch();
576 return thr->clock.get(old.TidWithIgnore()) >= old.epoch();
628 StoreShadow(shadow_mem + (cur.epoch() % kShadowCnt), store_word);
664 old.epoch() > sync_epoch &&
706 // epoch[0:31] = sync_epoch[0:31]
707 // epoch[32:63] = sync_epoch[0:31]
708 // epoch[64:95] = sync_epoch[0:31
710 const m128 epoch = SHUF(epoch1, epoch1, 0, 0, 0, 0); local
    [all...]
  /system/update_engine/
update_attempter_unittest.cc 942 Time epoch = Time::FromInternalValue(0); local
    [all...]
  /external/golang-protobuf/ptypes/
timestamp_test.go 48 // The timestamp representing the Unix epoch date.
69 // A date before the epoch.
71 // A date after the epoch.
73 // A date after the epoch, in the middle of the day.
  /external/tensorflow/tensorflow/python/keras/_impl/keras/
callbacks_test.py 191 filepath = os.path.join(temp_dir, 'checkpoint.{epoch:02d}.h5')
208 assert os.path.exists(filepath.format(epoch=2))
209 assert os.path.exists(filepath.format(epoch=4))
210 os.remove(filepath.format(epoch=2))
211 os.remove(filepath.format(epoch=4))
212 assert not os.path.exists(filepath.format(epoch=1))
213 assert not os.path.exists(filepath.format(epoch=3))
279 assert len(hist.epoch) >= patience
284 assert len(hist.epoch) >= patience
352 # This should reduce the LR after the first epoch (due to high epsilon)
    [all...]
  /external/volley/src/main/java/com/android/volley/toolbox/
HttpHeaderParser.java 137 * Parse date in RFC1123 format, and return its value as epoch
150 /** Format an epoch date in RFC1123 format. */
151 static String formatEpochAsRfc1123(long epoch) {
152 return newRfc1123Formatter().format(new Date(epoch));
  /external/tensorflow/tensorflow/contrib/learn/python/learn/learn_io/
data_feeder_test.py 177 epoch = feeder.make_epoch_variable()
181 self.assertAllClose(feed_dict[epoch.name], [0])
184 self.assertAllClose(feed_dict[epoch.name], [0])
187 self.assertAllClose(feed_dict[epoch.name], [0])
188 # Back to the first input again, so new epoch.
190 self.assertAllClose(feed_dict[epoch.name], [1])
data_feeder.py 382 self.epoch = 0
410 """Adds a placeholder variable for the epoch to the graph.
413 The epoch placeholder.
416 dtypes.int32, [1], name='epoch')
465 'epoch': self.epoch,
507 if self.max_epochs is not None and self.epoch + 1 > self.max_epochs:
512 feed_dict[self._epoch_placeholder.name] = [self.epoch]
534 self.epoch += 1
  /libcore/luni/src/test/java/libcore/java/text/
SimpleDateFormatTest.java 301 Date epoch = new Date(0); local
310 assertEquals("1969-12-31 18:00:00 -0600", sdf.format(epoch));
313 assertEquals("1969-12-31 16:00:00 -0800", sdf.format(epoch));
315 assertEquals("1970-01-01 00:00:00 +0000", sdf.format(epoch));
326 assertEquals("1969-12-31 18:00:00 -0600", sdf.format(epoch));
329 assertEquals("1969-12-31 16:00:00 -0800", sdf.format(epoch));
331 assertEquals("1970-01-01 00:00:00 +0000", sdf.format(epoch));
    [all...]
  /external/tensorflow/tensorflow/contrib/tensor_forest/hybrid/python/
hybrid_model.py 105 def training_graph(self, data, labels, data_spec=None, epoch=None):
  /external/tensorflow/tensorflow/contrib/eager/python/examples/gan/
mnist.py 291 for epoch in range(1, 101):
300 print('\nTrain time for epoch #%d (global step %d): %f' % (
301 epoch, global_step.numpy(), end - start))
347 help=('Directory to save checkpoints in (once per epoch) (default '
  /external/tensorflow/tensorflow/contrib/eager/python/examples/mnist/
mnist.py 194 for epoch in range(1, 11):
202 print('\nTrain time for epoch #%d (global step %d): %f' % (
203 epoch, global_step.numpy(), end - start))
244 help='Directory to save checkpoints in (once per epoch)')
  /external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_colorbot/
rnn_colorbot.py 255 for epoch in range(FLAGS.num_epochs):
260 print("train/time for epoch #%d: %.2f" % (epoch, end - start))
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
monitors_test.py 112 for epoch in xrange(num_epochs):
113 monitor.epoch_begin(epoch)
115 step = epoch * num_steps_per_epoch
126 monitor.epoch_end(epoch)
393 monitor.epoch_begin(epoch=0)
460 monitor.epoch_end(epoch=0)
478 monitor.epoch_begin(epoch=0)
510 monitor.epoch_begin(epoch=0)
    [all...]
monitors.py 58 # TODO(ptucker): Fail if epoch or step does not monotonically increase?
128 def epoch_begin(self, epoch):
129 """Begin epoch.
132 epoch: `int`, the epoch number.
135 ValueError: if we've already begun an epoch, or `epoch` < 0.
139 if epoch < 0:
140 raise ValueError("Invalid epoch %s." % epoch)
    [all...]
  /build/make/tools/releasetools/
add_img_to_target_files 246 epoch = datetime.datetime.fromtimestamp(0)
247 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
324 epoch = datetime.datetime.fromtimestamp(0)
325 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
472 epoch = datetime.datetime.fromtimestamp(0)
473 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
add_img_to_target_files.py 246 epoch = datetime.datetime.fromtimestamp(0)
247 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
324 epoch = datetime.datetime.fromtimestamp(0)
325 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
472 epoch = datetime.datetime.fromtimestamp(0)
473 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
  /external/golang-protobuf/ptypes/timestamp/
timestamp.pb.go 32 // nanosecond resolution in UTC Epoch time. It is encoded using the
65 // // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
66 // // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
109 // Represents seconds of UTC time since Unix epoch
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Timestamp.cs 45 /// nanosecond resolution in UTC Epoch time. It is encoded using the
76 /// // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
77 /// // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
128 /// Represents seconds of UTC time since Unix epoch
  /external/fio/
backend.c 355 if (utime_since(&td->epoch, t) >= td->o.timeout)
    [all...]

Completed in 823 milliseconds

12 3 4 5 6