OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:old_entry
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/compiler/
value-numbering-reducer.cc
145
Node* const
old_entry
= old_entries[i];
local
146
if (!
old_entry
||
old_entry
->IsDead()) continue;
147
for (size_t j = HashCode(
old_entry
) & mask;; j = (j + 1) & mask) {
149
if (entry ==
old_entry
) {
154
entries_[j] =
old_entry
;
/system/connectivity/shill/
routing_table.cc
160
RoutingTableEntry*
old_entry
;
local
164
&
old_entry
)) {
165
if (
old_entry
->gateway.Equals(gateway_address)) {
166
if (
old_entry
->metric != metric) {
167
ReplaceMetric(interface_index,
old_entry
, metric);
173
*
old_entry
,
/external/v8/src/crankshaft/
hydrogen-check-elimination.cc
179
HCheckTableEntry*
old_entry
= &entries_[i];
local
180
DCHECK(
old_entry
->maps_->size() > 0);
182
new_entry->object_ =
old_entry
->object_;
183
new_entry->maps_ =
old_entry
->maps_;
184
new_entry->state_ =
old_entry
->state_;
186
if (
old_entry
->check_ != NULL &&
187
old_entry
->check_->block()->Dominates(succ)) {
188
new_entry->check_ =
old_entry
->check_;
/external/v8/src/
gdb-jit.cc
2082
JITCodeEntry*
old_entry
= cur.value();
local
[
all
...]
Completed in 2117 milliseconds