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 --- ...mnn_1_1profiling_1_1_command_handler_hash.xhtml | 161 +++++++++++++++++++++ 1 file changed, 161 insertions(+) create mode 100644 20.02/structarmnn_1_1profiling_1_1_command_handler_hash.xhtml (limited to '20.02/structarmnn_1_1profiling_1_1_command_handler_hash.xhtml') diff --git a/20.02/structarmnn_1_1profiling_1_1_command_handler_hash.xhtml b/20.02/structarmnn_1_1profiling_1_1_command_handler_hash.xhtml new file mode 100644 index 0000000000..747d164f14 --- /dev/null +++ b/20.02/structarmnn_1_1profiling_1_1_command_handler_hash.xhtml @@ -0,0 +1,161 @@ + + + + + + + + + + + + + +ArmNN: CommandHandlerHash Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
CommandHandlerHash Struct Reference
+
+
+ +

#include <CommandHandlerRegistry.hpp>

+ + + + +

+Public Member Functions

std::size_t operator() (const CommandHandlerKey &commandHandlerKey) const
 
+

Detailed Description

+
+

Definition at line 21 of file CommandHandlerRegistry.hpp.

+

Member Function Documentation

+ +

◆ operator()()

+ +
+
+ + + + + +
+ + + + + + + + +
std::size_t operator() (const CommandHandlerKeycommandHandlerKey) const
+
+inline
+
+ +

Definition at line 23 of file CommandHandlerRegistry.hpp.

+ +

References CommandHandlerKey::GetPacketId(), and CommandHandlerKey::GetVersion().

+
24  {
25  std::size_t seed = 0;
26  boost::hash_combine(seed, commandHandlerKey.GetPacketId());
27  boost::hash_combine(seed, commandHandlerKey.GetVersion());
28  return seed;
29  }
+
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1