From f86be93b7492b381370cae7bf71eca8572a0cbae Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Tue, 24 Aug 2021 16:27:15 +0100 Subject: IVGCVSW-5924 Update 21.08 Doxygen Documents * Also updated latest symlink. Signed-off-by: Matthew Sloyan Change-Id: If9b4e0e52464abdf797b9eb858ae19bcc64c2aea --- 21.08/classarmnn_1_1_float32_encoder.xhtml | 298 +++++++++++++++++++++++++++++ 1 file changed, 298 insertions(+) create mode 100644 21.08/classarmnn_1_1_float32_encoder.xhtml (limited to '21.08/classarmnn_1_1_float32_encoder.xhtml') diff --git a/21.08/classarmnn_1_1_float32_encoder.xhtml b/21.08/classarmnn_1_1_float32_encoder.xhtml new file mode 100644 index 0000000000..4cc5c12a2b --- /dev/null +++ b/21.08/classarmnn_1_1_float32_encoder.xhtml @@ -0,0 +1,298 @@ + + + + + + + + + + + + + +ArmNN: Float32Encoder Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
Float32Encoder Class Reference
+
+
+ +

#include <BaseIterator.hpp>

+
+Inheritance diagram for Float32Encoder:
+
+
+ + +TypedIterator< float, Encoder< float > > +Encoder< float > +BaseIterator + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Float32Encoder (float *data)
 
 Float32Encoder ()
 
void Set (float right) override
 
float Get () const override
 
- Public Member Functions inherited from TypedIterator< float, Encoder< float > >
 TypedIterator (float *data=nullptr)
 
void Reset (void *data) override
 
TypedIteratoroperator++ () override
 
TypedIteratoroperator+= (const unsigned int increment) override
 
TypedIteratoroperator-= (const unsigned int increment) override
 
TypedIteratoroperator[] (const unsigned int index) override
 
- Public Member Functions inherited from Encoder< float >
 Encoder ()
 
virtual ~Encoder ()
 
- Public Member Functions inherited from BaseIterator
 BaseIterator ()
 
virtual ~BaseIterator ()
 
+ + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from TypedIterator< float, Encoder< float > >
float * m_Iterator
 
float * m_Start
 
+

Detailed Description

+
+

Definition at line 671 of file BaseIterator.hpp.

+

Constructor & Destructor Documentation

+ +

◆ Float32Encoder() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + +
Float32Encoder (float * data)
+
+inline
+
+ +

Definition at line 674 of file BaseIterator.hpp.

+
675  : TypedIterator(data) {}
+
+
+
+ +

◆ Float32Encoder() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
Float32Encoder ()
+
+inline
+
+ +

Definition at line 677 of file BaseIterator.hpp.

+
678  : Float32Encoder(nullptr) {}
+
+
+
+

Member Function Documentation

+ +

◆ Get()

+ +
+
+ + + + + +
+ + + + + + + +
float Get () const
+
+inlineoverridevirtual
+
+ +

Implements Encoder< float >.

+ +

Definition at line 685 of file BaseIterator.hpp.

+
686  {
687  return *m_Iterator;
688  }
+
+
+
+ +

◆ Set()

+ +
+
+ + + + + +
+ + + + + + + + +
void Set (float right)
+
+inlineoverridevirtual
+
+ +

Implements Encoder< float >.

+ +

Definition at line 680 of file BaseIterator.hpp.

+
681  {
682  *m_Iterator = right;
683  }
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1