Searched refs:other_entry (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/objects/
H A Dscope-info.cc31 Object* other_entry = other->get(index); local
33 if (entry != other_entry) return false;
36 HeapObject::cast(other_entry)->map()->instance_type()) {
40 if (!String::cast(entry)->Equals(String::cast(other_entry))) {
44 if (!ScopeInfo::cast(entry)->Equals(ScopeInfo::cast(other_entry))) {
48 if (!ModuleInfo::cast(entry)->Equals(ModuleInfo::cast(other_entry))) {
/external/python/cpython3/Objects/
H A Dsetobject.c635 setentry *other_entry; local
653 other_entry = other->table;
658 for (i = 0; i <= other->mask; i++, so_entry++, other_entry++) {
659 key = other_entry->key;
664 so_entry->hash = other_entry->hash;
678 for (i = other->mask + 1; i > 0 ; i--, other_entry++) {
679 key = other_entry->key;
682 set_insert_clean(newtable, newmask, key, other_entry->hash);
690 other_entry = &other->table[i];
691 key = other_entry
[all...]

Completed in 6765 milliseconds