Home
last modified time | relevance | path

Searched defs:softfloat (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Dsoftfloat.hpp89 struct CV_EXPORTS softfloat struct
93 softfloat() { v = 0; } in softfloat() function
95 softfloat( const softfloat& c) { v = c.v; } in softfloat() argument
97 softfloat& operator=( const softfloat& c ) in operator =()
106 static const softfloat fromRaw( const uint32_t a ) { softfloat x; x.v = a; return x; } in fromRaw()
116 explicit softfloat( const int a ) { *this = softfloat(static_cast<int32_t>(a)); } in softfloat() function
120 explicit softfloat( const float a ) { Cv32suf s; s.f = a; v = s.u; } in softfloat() function
124 operator float() const { Cv32suf s; s.u = v; return s.f; } in operator float()
131 softfloat operator - () const { softfloat x; x.v = v ^ (1U << 31); return x; } in operator -()
148 softfloat& operator += (const softfloat& a) { *this = *this + a; return *this; } in operator +=()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/
H A Dsoftfloat.hpp89 struct CV_EXPORTS softfloat struct
93 softfloat() { v = 0; } in softfloat() argument
95 softfloat( const softfloat& c) { v = c.v; } in softfloat() function
97 softfloat& operator=( const softfloat& c ) in operator =()
106 static const softfloat fromRaw( const uint32_t a ) { softfloat x; x.v = a; return x; } in fromRaw()
116 explicit softfloat( const int a ) { *this = softfloat(static_cast<int32_t>(a)); } in softfloat() argument
120 explicit softfloat( const float a ) { Cv32suf s; s.f = a; v = s.u; } in softfloat() function
124 operator float() const { Cv32suf s; s.u = v; return s.f; } in operator float()
131 softfloat operator - () const { softfloat x; x.v = v ^ (1U << 31); return x; } in operator -()
148 softfloat& operator += (const softfloat& a) { *this = *this + a; return *this; } in operator +=()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/
H A Dsoftfloat.hpp89 struct CV_EXPORTS softfloat struct
93 softfloat() { v = 0; } in softfloat() argument
95 softfloat( const softfloat& c) { v = c.v; } in softfloat() function
97 softfloat& operator=( const softfloat& c ) in operator =()
106 static const softfloat fromRaw( const uint32_t a ) { softfloat x; x.v = a; return x; } in fromRaw()
116 explicit softfloat( const int a ) { *this = softfloat(static_cast<int32_t>(a)); } in softfloat() argument
120 explicit softfloat( const float a ) { Cv32suf s; s.f = a; v = s.u; } in softfloat() argument
124 operator float() const { Cv32suf s; s.u = v; return s.f; } in operator float()
131 softfloat operator - () const { softfloat x; x.v = v ^ (1U << 31); return x; } in operator -()
148 softfloat& operator += (const softfloat& a) { *this = *this + a; return *this; } in operator +=()
[all …]