From f4019872c1134c6fcc1d6993e5746f55c1e79208 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 8 Mar 2022 20:01:38 +0000 Subject: IVGCVSW-6819 Fix the directory structure and broken link to latest docu Signed-off-by: Nikhil Raj Change-Id: I05b559d15faf92c76ff536719693b361316be4f3 --- 22.02/classarmnn_1_1_int32_to_int32t_encoder.xhtml | 298 +++++++++++++++++++++ 1 file changed, 298 insertions(+) create mode 100644 22.02/classarmnn_1_1_int32_to_int32t_encoder.xhtml (limited to '22.02/classarmnn_1_1_int32_to_int32t_encoder.xhtml') diff --git a/22.02/classarmnn_1_1_int32_to_int32t_encoder.xhtml b/22.02/classarmnn_1_1_int32_to_int32t_encoder.xhtml new file mode 100644 index 0000000000..919e1167f3 --- /dev/null +++ b/22.02/classarmnn_1_1_int32_to_int32t_encoder.xhtml @@ -0,0 +1,298 @@ + + + + + + + + + + + + + +ArmNN: Int32ToInt32tEncoder Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
Int32ToInt32tEncoder Class Reference
+
+
+ +

#include <BaseIterator.hpp>

+
+Inheritance diagram for Int32ToInt32tEncoder:
+
+
+ + +TypedIterator< int32_t, Encoder< int32_t > > +Encoder< int32_t > +BaseIterator + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Int32ToInt32tEncoder (int32_t *data)
 
 Int32ToInt32tEncoder ()
 
void Set (int32_t right) override
 
int32_t Get () const override
 
- Public Member Functions inherited from TypedIterator< int32_t, Encoder< int32_t > >
 TypedIterator (int32_t *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< int32_t >
 Encoder ()
 
virtual ~Encoder ()
 
- Public Member Functions inherited from BaseIterator
 BaseIterator ()
 
virtual ~BaseIterator ()
 
+ + + + + + +

+Additional Inherited Members

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

Detailed Description

+
+

Definition at line 711 of file BaseIterator.hpp.

+

Constructor & Destructor Documentation

+ +

◆ Int32ToInt32tEncoder() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + +
Int32ToInt32tEncoder (int32_t * data)
+
+inline
+
+ +

Definition at line 714 of file BaseIterator.hpp.

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

◆ Int32ToInt32tEncoder() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
Int32ToInt32tEncoder ()
+
+inline
+
+ +

Definition at line 717 of file BaseIterator.hpp.

+ +
+
+

Member Function Documentation

+ +

◆ Get()

+ +
+
+ + + + + +
+ + + + + + + +
int32_t Get () const
+
+inlineoverridevirtual
+
+ +

Implements Encoder< int32_t >.

+ +

Definition at line 725 of file BaseIterator.hpp.

+
726  {
727  return *m_Iterator;
728  }
+
+
+
+ +

◆ Set()

+ +
+
+ + + + + +
+ + + + + + + + +
void Set (int32_t right)
+
+inlineoverridevirtual
+
+ +

Implements Encoder< int32_t >.

+ +

Definition at line 720 of file BaseIterator.hpp.

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