Lines Matching refs:match
193 match(Addr va, uint8_t _vmid, bool hypLookUp, bool secure_lookup,
196 return match(va, 0, _vmid, hypLookUp, secure_lookup, true, target_el);
200 match(Addr va, uint16_t asn, uint8_t _vmid, bool hypLookUp,
203 bool match = false;
209 match = checkELMatch(target_el);
211 if (match && !ignore_asn) {
212 match = global || (asn == asid);
214 if (match && nstid) {
215 match = isHyp || (_vmid == vmid);
218 return match;