HomeSort by relevance Sort by last modified time
    Searched refs:last_value_ (Results 1 - 4 of 4) sorted by null

  /external/v8/src/crankshaft/
hydrogen-load-elimination.cc 24 HValue* last_value_; member in class:v8::internal::HFieldApproximation
31 copy->last_value_ = this->last_value_;
174 if (other == NULL || !Equal(approx->last_value_, other->last_value_)) {
213 if (approx->last_value_ == NULL) {
215 approx->last_value_ = instr;
217 } else if (approx->last_value_->block()->EqualToOrDominates(
220 return approx->last_value_;
254 if (Equal(approx->last_value_, value))
    [all...]
  /external/v8/src/
counters.h 378 last_value_(0.0),
391 // 2) (last_ms_, last_value_) is the last received sample.
403 double last_value_; member in class:v8::internal::AggregatedMemoryHistogram
414 last_value_ = current_value;
422 last_value_ = current_value;
428 double slope = (current_value - last_value_) / (current_ms - last_ms_);
433 double end_value = last_value_ + (end_ms - last_ms_) * slope;
440 sample_value = (last_value_ + end_value) / 2;
443 last_value_ = end_value;
452 aggregate_value_ = last_value_;
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/acm2/
audio_coding_module_impl.h 209 int last_value_ = 0; member in class:webrtc::acm2::final::ChangeLogger
audio_coding_module_impl.cc 97 if (value != last_value_ || first_time_) {
99 last_value_ = value;

Completed in 230 milliseconds