Home
last modified time | relevance | path

Searched refs:ticks_ (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/v8/src/platform/
Dtime.h323 TimeTicks() : ticks_(0) {} in TimeTicks()
342 bool IsNull() const { return ticks_ == 0; } in IsNull()
350 return ticks_; in ToInternalValue()
354 ticks_ = other.ticks_;
360 return TimeDelta::FromMicroseconds(ticks_ - other.ticks_);
365 ticks_ += delta.InMicroseconds();
369 ticks_ -= delta.InMicroseconds();
375 return TimeTicks(ticks_ + delta.InMicroseconds());
378 return TimeTicks(ticks_ - delta.InMicroseconds());
383 return ticks_ == other.ticks_;
[all …]
/external/chromium/base/
Dtime.h455 TimeTicks() : ticks_(0) { in TimeTicks()
480 return ticks_ == 0; in is_null()
485 return ticks_; in ToInternalValue()
489 ticks_ = other.ticks_;
495 return TimeDelta(ticks_ - other.ticks_);
500 ticks_ += delta.delta_;
504 ticks_ -= delta.delta_;
510 return TimeTicks(ticks_ + delta.delta_);
513 return TimeTicks(ticks_ - delta.delta_);
518 return ticks_ == other.ticks_;
[all …]
/external/chromium_org/base/time/
Dtime.h533 TimeTicks() : ticks_(0) { in TimeTicks()
597 return ticks_ == 0; in is_null()
619 return ticks_; in ToInternalValue()
623 ticks_ = other.ticks_;
629 return TimeDelta(ticks_ - other.ticks_);
634 ticks_ += delta.delta_;
638 ticks_ -= delta.delta_;
644 return TimeTicks(ticks_ + delta.delta_);
647 return TimeTicks(ticks_ - delta.delta_);
652 return ticks_ == other.ticks_;
[all …]
/external/chromium_org/net/quic/
Dquic_time.cc79 : ticks_(ticks) { in QuicTime()
83 return (ticks_ - base::TimeTicks()).InMicroseconds(); in ToDebuggingValue()
87 return ticks_ != base::TimeTicks(); in IsInitialized()
91 return QuicTime(ticks_ + delta.delta_); in Add()
95 return QuicTime(ticks_ - delta.delta_); in Subtract()
99 return QuicTime::Delta(ticks_ - other.ticks_); in Subtract()
Dquic_time.h99 base::TimeTicks ticks_; variable
164 return lhs.ticks_ == rhs.ticks_;
170 return lhs.ticks_ < rhs.ticks_;
/external/v8/tools/
Dtickprocessor.js194 var ticks = this.ticks_ =
356 this.ticks_.total++;
357 if (vmState == TickProcessor.VmStates.GC) this.ticks_.gc++;
359 this.ticks_.excluded++;
408 ', (' + this.ticks_.total +
409 ' ticks, ' + this.ticks_.unaccounted + ' unaccounted, ' +
410 this.ticks_.excluded + ' excluded).');
412 if (this.ticks_.total == 0) return;
415 if (!this.ignoreUnknown_ && this.ticks_.unaccounted > 0) {
417 this.printCounter(this.ticks_.unaccounted, this.ticks_.total);
[all …]
/external/chromium_org/v8/tools/
Dtickprocessor.js202 var ticks = this.ticks_ =
381 this.ticks_.total++;
382 if (vmState == TickProcessor.VmStates.GC) this.ticks_.gc++;
384 this.ticks_.excluded++;
438 ', (' + this.ticks_.total +
439 ' ticks, ' + this.ticks_.unaccounted + ' unaccounted, ' +
440 this.ticks_.excluded + ' excluded).');
442 if (this.ticks_.total == 0) return;
445 if (!this.ignoreUnknown_ && this.ticks_.unaccounted > 0) {
447 this.printCounter(this.ticks_.unaccounted, this.ticks_.total);
[all …]
/external/chromium_org/v8/src/
Dhydrogen.cc6734 FunctionSorter() : index_(0), ticks_(0), ast_length_(0), src_length_(0) { } in FunctionSorter()
6737 ticks_(ticks), in FunctionSorter()
6742 int ticks() const { return ticks_; } in ticks()
6748 int ticks_; member in v8::internal::FunctionSorter