From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/classarmnn_1_1profiling_1_1_packet_key.xhtml | 375 +++++++++++++++++++++ 1 file changed, 375 insertions(+) create mode 100644 20.02/classarmnn_1_1profiling_1_1_packet_key.xhtml (limited to '20.02/classarmnn_1_1profiling_1_1_packet_key.xhtml') diff --git a/20.02/classarmnn_1_1profiling_1_1_packet_key.xhtml b/20.02/classarmnn_1_1profiling_1_1_packet_key.xhtml new file mode 100644 index 0000000000..86912d66c2 --- /dev/null +++ b/20.02/classarmnn_1_1profiling_1_1_packet_key.xhtml @@ -0,0 +1,375 @@ + + + + + + + + + + + + + +ArmNN: PacketKey Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
PacketKey Class Referencefinal
+
+
+ +

#include <PacketVersionResolver.hpp>

+ + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 PacketKey (uint32_t familyId, uint32_t packetId)
 
uint32_t GetFamilyId ()
 
uint32_t GetPacketId ()
 
bool operator< (const PacketKey &rhs) const
 
bool operator> (const PacketKey &rhs) const
 
bool operator<= (const PacketKey &rhs) const
 
bool operator>= (const PacketKey &rhs) const
 
bool operator== (const PacketKey &rhs) const
 
bool operator!= (const PacketKey &rhs) const
 
+

Detailed Description

+
+

Definition at line 16 of file PacketVersionResolver.hpp.

+

Constructor & Destructor Documentation

+ +

◆ PacketKey()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
PacketKey (uint32_t familyId,
uint32_t packetId 
)
+
+inline
+
+ +

Definition at line 19 of file PacketVersionResolver.hpp.

+
19 : m_FamilyId(familyId), m_PacketId(packetId) {}
+
+
+

Member Function Documentation

+ +

◆ GetFamilyId()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t GetFamilyId ()
+
+inline
+
+ +

Definition at line 21 of file PacketVersionResolver.hpp.

+
21 { return m_FamilyId; }
+
+
+ +

◆ GetPacketId()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t GetPacketId ()
+
+inline
+
+
+ +

◆ operator!=()

+ +
+
+ + + + + + + + +
bool operator!= (const PacketKeyrhs) const
+
+ +

Definition at line 50 of file PacketVersionResolver.cpp.

+ +

Referenced by PacketKey::GetPacketId().

+
51 {
52  return !(*this == rhs);
53 }
+
+
+ +

◆ operator<()

+ +
+
+ + + + + + + + +
bool operator< (const PacketKeyrhs) const
+
+ +

Definition at line 16 of file PacketVersionResolver.cpp.

+ +

Referenced by PacketKey::GetPacketId().

+
17 {
18  bool result = true;
19  if (m_FamilyId == rhs.m_FamilyId)
20  {
21  result = m_PacketId < rhs.m_PacketId;
22  }
23  else if (m_FamilyId > rhs.m_FamilyId)
24  {
25  result = false;
26  }
27  return result;
28 }
+
+
+ +

◆ operator<=()

+ +
+
+ + + + + + + + +
bool operator<= (const PacketKeyrhs) const
+
+ +

Definition at line 35 of file PacketVersionResolver.cpp.

+ +

Referenced by PacketKey::GetPacketId().

+
36 {
37  return !(*this > rhs);
38 }
+
+
+ +

◆ operator==()

+ +
+
+ + + + + + + + +
bool operator== (const PacketKeyrhs) const
+
+ +

Definition at line 45 of file PacketVersionResolver.cpp.

+ +

Referenced by PacketKey::GetPacketId().

+
46 {
47  return m_FamilyId == rhs.m_FamilyId && m_PacketId == rhs.m_PacketId;
48 }
+
+
+ +

◆ operator>()

+ +
+
+ + + + + + + + +
bool operator> (const PacketKeyrhs) const
+
+ +

Definition at line 30 of file PacketVersionResolver.cpp.

+ +

Referenced by PacketKey::GetPacketId().

+
31 {
32  return rhs < *this;
33 }
+
+
+ +

◆ operator>=()

+ +
+
+ + + + + + + + +
bool operator>= (const PacketKeyrhs) const
+
+ +

Definition at line 40 of file PacketVersionResolver.cpp.

+ +

Referenced by PacketKey::GetPacketId().

+
41 {
42  return !(*this < rhs);
43 }
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1