Home
last modified time | relevance | path

Searched refs:PacketKey (Results 1 – 4 of 4) sorted by relevance

/external/armnn/profiling/common/src/
DPacketVersionResolver.cpp14 bool PacketKey::operator<(const PacketKey& rhs) const in operator <()
28 bool PacketKey::operator>(const PacketKey& rhs) const in operator >()
33 bool PacketKey::operator<=(const PacketKey& rhs) const in operator <=()
38 bool PacketKey::operator>=(const PacketKey& rhs) const in operator >=()
43 bool PacketKey::operator==(const PacketKey& rhs) const in operator ==()
48 bool PacketKey::operator!=(const PacketKey& rhs) const in operator !=()
55 const PacketKey packetKey(familyId, packetId); in ResolvePacketVersion()
/external/armnn/profiling/common/include/
DPacketVersionResolver.hpp16 class PacketKey final class
19 PacketKey(uint32_t familyId, uint32_t packetId) : m_FamilyId(familyId), m_PacketId(packetId) {} in PacketKey() function in arm::pipe::PacketKey
24 bool operator< (const PacketKey& rhs) const;
25 bool operator> (const PacketKey& rhs) const;
26 bool operator<=(const PacketKey& rhs) const;
27 bool operator>=(const PacketKey& rhs) const;
28 bool operator==(const PacketKey& rhs) const;
29 bool operator!=(const PacketKey& rhs) const;
36 static const PacketKey ActivateTimeLinePacket(0 , 6);
37 static const PacketKey DeactivateTimeLinePacket(0 , 7);
/external/rust/crates/quiche/src/
Dcrypto.rs136 packet: PacketKey,
150 packet: PacketKey::new(alg, key, iv)?, in new()
162 packet: PacketKey::from_secret(aead, secret)?, in from_secret()
227 let next_packet_key = PacketKey::from_secret(self.alg, &next_secret)?; in derive_next_packet_key()
248 packet: PacketKey,
262 packet: PacketKey::new(alg, key, iv)?, in new()
274 packet: PacketKey::from_secret(aead, secret)?, in from_secret()
354 let next_packet_key = PacketKey::from_secret(self.alg, &next_secret)?; in derive_next_packet_key()
395 pub struct PacketKey { struct
401 impl PacketKey { implementation
/external/armnn/src/profiling/test/
DProfilingTests.cpp116 arm::pipe::PacketKey key0(0, 0);
117 arm::pipe::PacketKey key1(0, 0);
118 arm::pipe::PacketKey key2(0, 1);
119 arm::pipe::PacketKey key3(0, 2);
120 arm::pipe::PacketKey key4(1, 0);
121 arm::pipe::PacketKey key5(1, 0);
122 arm::pipe::PacketKey key6(1, 1);