Lines Matching full:address
86 // containing child's high address.
98 // iterator_high might refer to an irrelevant range: one whose base address
99 // is higher than the new range's high address. Set contains_high to true
140 // Store the new range in the map by its high address. Any children that
152 const AddressType &address, EntryType *entry) const {
161 // Get an iterator to the child range whose high address is equal to or
162 // greater than the supplied address. If the supplied address is higher
164 // contain a child at address, so return false. If the supplied address
165 // is lower than the base address of the child range, then it is not within
167 MapConstIterator iterator = map_->lower_bound(address);
168 if (iterator == map_->end() || address < iterator->second->base_)
171 // The child in iterator->second contains the specified address. Find out
174 if (!iterator->second->RetrieveRange(address, entry))