Lines Matching full:address
46 const AddressType &address, const EntryType *&entry,
48 MapConstIterator iterator = map_.lower_bound(address);
52 // The map is keyed by the high address of each range, so |address| is
53 // guaranteed to be lower than the range's high address. If |range| is
54 // not directly preceded by another range, it's possible for address to
55 // be below the range's low address, though. When that happens, address
62 if (address < range->base())
77 const AddressType &address, const EntryType *&entry,
79 // If address is within a range, RetrieveRange can handle it.
80 if (RetrieveRange(address, entry, entry_base, entry_size))
83 // upper_bound gives the first element whose key is greater than address,
84 // but we want the first element whose key is less than or equal to address.
86 // points to the beginning of the map - in that case, address is lower than
89 MapConstIterator iterator = map_.upper_bound(address);