Home
last modified time | relevance | path

Searched defs:softdouble (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.hpp226 struct CV_EXPORTS softdouble struct
230 softdouble() : v(0) { } in softdouble() function
232 softdouble( const softdouble& c) { v = c.v; } in softdouble() function
234 softdouble& operator=( const softdouble& c ) in operator =()
243 static softdouble fromRaw( const uint64_t a ) { softdouble x; x.v = a; return x; } in fromRaw()
253 explicit softdouble( const int a ) { *this = softdouble(static_cast<int32_t>(a)); } in softdouble() function
257 explicit softdouble( const double a ) { Cv64suf s; s.f = a; v = s.u; } in softdouble() argument
261 operator double() const { Cv64suf s; s.u = v; return s.f; } in operator double()
268 softdouble operator - () const { softdouble x; x.v = v ^ (1ULL << 63); return x; } in operator -()
285 softdouble& operator += (const softdouble& 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.hpp226 struct CV_EXPORTS softdouble struct
230 softdouble() : v(0) { } in softdouble() function
232 softdouble( const softdouble& c) { v = c.v; } in softdouble() function
234 softdouble& operator=( const softdouble& c ) in operator =()
243 static softdouble fromRaw( const uint64_t a ) { softdouble x; x.v = a; return x; } in fromRaw()
253 explicit softdouble( const int a ) { *this = softdouble(static_cast<int32_t>(a)); } in softdouble() function
257 explicit softdouble( const double a ) { Cv64suf s; s.f = a; v = s.u; } in softdouble() argument
261 operator double() const { Cv64suf s; s.u = v; return s.f; } in operator double()
268 softdouble operator - () const { softdouble x; x.v = v ^ (1ULL << 63); return x; } in operator -()
285 softdouble& operator += (const softdouble& 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.hpp226 struct CV_EXPORTS softdouble struct
230 softdouble() : v(0) { } in softdouble() function
232 softdouble( const softdouble& c) { v = c.v; } in softdouble() function
234 softdouble& operator=( const softdouble& c ) in operator =()
243 static softdouble fromRaw( const uint64_t a ) { softdouble x; x.v = a; return x; } in fromRaw()
253 explicit softdouble( const int a ) { *this = softdouble(static_cast<int32_t>(a)); } in softdouble() function
257 explicit softdouble( const double a ) { Cv64suf s; s.f = a; v = s.u; } in softdouble() argument
261 operator double() const { Cv64suf s; s.u = v; return s.f; } in operator double()
268 softdouble operator - () const { softdouble x; x.v = v ^ (1ULL << 63); return x; } in operator -()
285 softdouble& operator += (const softdouble& a) { *this = *this + a; return *this; } in operator +=()
[all …]