Lines Matching refs:it2
110 for (auto &it2 : it.second.blocks) { in setHostAddrByPhysAddr() local
111 if (it2.first == off) { in setHostAddrByPhysAddr()
112 it2.second.hva = hva; in setHostAddrByPhysAddr()
130 for (auto &it2 : it.second.blocks) { in unsetHostAddrByPhysAddr() local
131 if (it2.first == off) { in unsetHostAddrByPhysAddr()
132 it2.second.hva = nullptr; in unsetHostAddrByPhysAddr()
160 for (const auto &it2 : it.second.blocks) { in getHostAddr() local
161 if (blockContainsOffset(it2.first, it2.second, off)) { in getHostAddr()
163 (unsigned long long)it2.first, in getHostAddr()
164 (unsigned long long)it2.first + it2.second.size, in getHostAddr()
165 it2.second.hva); in getHostAddr()
166 res = ((char*)it2.second.hva) + in getHostAddr()
167 offsetIntoBlock(it2.first, it2.second, off); in getHostAddr()