HomeSort by relevance Sort by last modified time
    Searched defs:old_entry (Results 1 - 5 of 5) sorted by null

  /external/v8/src/compiler/
value-numbering-reducer.cc 198 Node* const old_entry = old_entries[i]; local
199 if (!old_entry || old_entry->IsDead()) continue;
200 for (size_t j = HashCode(old_entry) & mask;; j = (j + 1) & mask) {
202 if (entry == old_entry) {
207 entries_[j] = old_entry;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
readline.c 425 HIST_ENTRY *old_entry; local
436 old_entry = replace_history_entry(entry_number, line, (void *)NULL);
437 if (!old_entry) {
444 _py_free_history_entry(old_entry);
  /external/python/cpython2/Modules/
readline.c 440 HIST_ENTRY *old_entry; local
451 old_entry = replace_history_entry(entry_number, line, (void *)NULL);
452 if (!old_entry) {
459 _py_free_history_entry(old_entry);
    [all...]
  /external/v8/src/crankshaft/
hydrogen-check-elimination.cc 180 HCheckTableEntry* old_entry = &entries_[i]; local
181 DCHECK(old_entry->maps_->size() > 0);
183 new_entry->object_ = old_entry->object_;
184 new_entry->maps_ = old_entry->maps_;
185 new_entry->state_ = old_entry->state_;
187 if (old_entry->check_ != NULL &&
188 old_entry->check_->block()->Dominates(succ)) {
189 new_entry->check_ = old_entry->check_;
  /external/v8/src/
gdb-jit.cc 2099 JITCodeEntry* old_entry = cur.value(); local
    [all...]

Completed in 885 milliseconds