From 8efb48a6847c5cd166c561127ae6611150963ce3 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 19 May 2023 11:14:28 +0100 Subject: Update Doxygen docu for 23.05 Signed-off-by: Nikhil Raj Change-Id: I0a992286f14fa68fcc6e5eba31ac39fed003cbbe --- 23.05/classarmnn_1_1_int32_to_int32t_encoder.xhtml | 312 +++++++++++++++++++++ 1 file changed, 312 insertions(+) create mode 100644 23.05/classarmnn_1_1_int32_to_int32t_encoder.xhtml (limited to '23.05/classarmnn_1_1_int32_to_int32t_encoder.xhtml') diff --git a/23.05/classarmnn_1_1_int32_to_int32t_encoder.xhtml b/23.05/classarmnn_1_1_int32_to_int32t_encoder.xhtml new file mode 100644 index 0000000000..8ab223a53c --- /dev/null +++ b/23.05/classarmnn_1_1_int32_to_int32t_encoder.xhtml @@ -0,0 +1,312 @@ + + + + + + + + + + + + + +ArmNN: Int32ToInt32tEncoder Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
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 ()
 
virtual int32_t Get () const=0
 
- 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 651 of file BaseIterator.hpp.

+

Constructor & Destructor Documentation

+ +

◆ Int32ToInt32tEncoder() [1/2]

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

Definition at line 654 of file BaseIterator.hpp.

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

◆ Int32ToInt32tEncoder() [2/2]

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

Definition at line 657 of file BaseIterator.hpp.

+
658  : Int32ToInt32tEncoder(nullptr) {}
+
+
+
+

Member Function Documentation

+ +

◆ Get()

+ +
+
+ + + + + +
+ + + + + + + +
int32_t Get () const
+
+inlineoverride
+
+ +

Definition at line 665 of file BaseIterator.hpp.

+
666  {
+
667  return *m_Iterator;
+
668  }
+
+

References TypedIterator< int32_t, Encoder< int32_t > >::m_Iterator.

+ +
+
+ +

◆ Set()

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

Implements Encoder< int32_t >.

+ +

Definition at line 660 of file BaseIterator.hpp.

+
661  {
+
662  *m_Iterator = right;
+
663  }
+
+

References TypedIterator< int32_t, Encoder< int32_t > >::m_Iterator.

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + + + + -- cgit v1.2.1