Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dload-elimination.cc241 Element that_element = that->elements_[j]; in Equals() local
242 if (this_element.object == that_element.object && in Equals()
243 this_element.index == that_element.index && in Equals()
244 this_element.value == that_element.value) { in Equals()
250 Element that_element = that->elements_[i]; in Equals() local
251 if (that_element.object == nullptr) continue; in Equals()
255 if (that_element.object == this_element.object && in Equals()
256 that_element.index == this_element.index && in Equals()
257 that_element.value == this_element.value) { in Equals()
272 for (Element const that_element : that->elements_) { in Merge() local
[all …]