From de36e4a9c299028e792c3a5bd99ad0816d806077 Mon Sep 17 00:00:00 2001 From: Ryan OShea Date: Fri, 13 Mar 2020 16:26:19 +0000 Subject: IVGCVSW-3726 Upload ArmNN Doxygen files * Upload current ArmNN Doxygen files Signed-off-by: Ryan OShea Change-Id: I8989ed16ee40a99a4495b100bd009cf3e24a7285 --- .../classarmnn_1_1profiling_1_1_packet_key.html | 361 +++++++++++++++++++++ 1 file changed, 361 insertions(+) create mode 100644 Documentation/classarmnn_1_1profiling_1_1_packet_key.html (limited to 'Documentation/classarmnn_1_1profiling_1_1_packet_key.html') diff --git a/Documentation/classarmnn_1_1profiling_1_1_packet_key.html b/Documentation/classarmnn_1_1profiling_1_1_packet_key.html new file mode 100644 index 0000000000..b9d5710d73 --- /dev/null +++ b/Documentation/classarmnn_1_1profiling_1_1_packet_key.html @@ -0,0 +1,361 @@ + + + + + + + +ArmNN: PacketKey Class Reference + + + + + + + + + + + + + + +
+
+ + + + + + +
+
ArmNN +  NotReleased +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
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