Lines Matching refs:other
6 * not be construed as granting a license to any other intellectual
24 * documentation and/or other materials provided with the distribution;
170 * Structure that defines attributes and other data associated
575 * line we proceed to invalidate all other copies.
629 * other copies), the express snoop flag is set by the downstream
630 * cache to invalidate all other copies in zero time. Secondly,
643 * possibly other Shared copies in the memory system. A downstream
1186 // one to the other, e.g. a forwarded response to a response
1277 * the other packet provides the data, which is then copied to the
1278 * current packet. If the current packet is a write, and the other
1283 trySatisfyFunctional(PacketPtr other)
1285 if (other->isMaskedWrite()) {
1287 if (_isSecure == other->isSecure() &&
1288 getAddr() <= (other->getAddr() + other->getSize() - 1) &&
1289 other->getAddr() <= (getAddr() + getSize() - 1)) {
1291 " (addr: 0x%x, other addr: 0x%x)", getAddr(),
1292 other->getAddr());
1298 return trySatisfyFunctional(other, other->getAddr(), other->isSecure(),
1299 other->getSize(),
1300 other->hasData() ?
1301 other->getPtr<uint8_t>() : NULL);