CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Namespaces | Typedefs | Functions | Variables
SSEVec.h File Reference
#include <cmath>
#include <iosfwd>

Go to the source code of this file.

Classes

struct  mathSSE::As3D< T >
 
struct  mathSSE::OldVec< T >
 
union  mathSSE::Vec2< T >
 
union  mathSSE::Vec4< T >
 
union  mathSSE::Vec4< T >
 
struct  mathSSE::ZeroUpper
 

Namespaces

 mathSSE
 

Typedefs

typedef Vec2< double > mathSSE::Vec2D
 
typedef Vec2< float > mathSSE::Vec2F
 
typedef Vec4< double > mathSSE::Vec3D
 
typedef Vec4< float > mathSSE::Vec3F
 
typedef Vec4< double > mathSSE::Vec4D
 
typedef Vec4< float > mathSSE::Vec4F
 

Functions

template<typename T >
struct mathSSE::OldVec mathSSE::__attribute__ ((aligned(16)))
 
template<typename T >
As3D< TmathSSE::as3D (Vec4< T > const &v)
 
std::ostream & operator<< (std::ostream &out, mathSSE::Vec2D const &v)
 
std::ostream & operator<< (std::ostream &out, mathSSE::Vec2F const &v)
 
std::ostream & operator<< (std::ostream &out, mathSSE::Vec4F const &v)
 
std::ostream & operator<< (std::ostream &out, mathSSE::Vec4D const &v)
 
std::ostream & operator<< (std::ostream &out, mathSSE::As3D< float > const &v)
 
std::ostream & operator<< (std::ostream &out, mathSSE::As3D< double > const &v)
 
template<typename T >
T mathSSE::sqrt (T t)
 

Variables

T theW
 
T theX
 
T theY
 
T theZ
 

Function Documentation

std::ostream& operator<< ( std::ostream &  out,
mathSSE::Vec2D const &  v 
)

Definition at line 16 of file SSEVec.cc.

16  {
17  return out << '(' << v[0] <<", " << v[1] <<')';
18 }
tuple out
Definition: dbtoconf.py:99
std::ostream& operator<< ( std::ostream &  out,
mathSSE::Vec2F const &  v 
)

Definition at line 13 of file SSEVec.cc.

13  {
14  return out << '(' << v[0] <<", " << v[1] <<')';
15 }
tuple out
Definition: dbtoconf.py:99
std::ostream& operator<< ( std::ostream &  out,
mathSSE::Vec4F const &  v 
)

Definition at line 7 of file SSEVec.cc.

7  {
8  return out << '(' << v[0] <<", " << v[1] <<", "<< v[2] <<", "<< v[3] <<')';
9 }
tuple out
Definition: dbtoconf.py:99
std::ostream& operator<< ( std::ostream &  out,
mathSSE::Vec4D const &  v 
)

Definition at line 10 of file SSEVec.cc.

10  {
11  return out << '(' << v[0] <<", " << v[1] <<", "<< v[2] <<", "<< v[3] <<')';
12 }
tuple out
Definition: dbtoconf.py:99
std::ostream& operator<< ( std::ostream &  out,
mathSSE::As3D< float > const &  v 
)

Definition at line 20 of file SSEVec.cc.

References dbtoconf::out, and findQualityFiles::v.

20  {
21  return out << '(' << v.v[0] <<", " << v.v[1] <<", "<< v.v[2] <<')';
22 }
tuple out
Definition: dbtoconf.py:99
Vec4< T > const & v
Definition: SSEVec.h:538
std::ostream& operator<< ( std::ostream &  out,
mathSSE::As3D< double > const &  v 
)

Definition at line 24 of file SSEVec.cc.

References dbtoconf::out, and findQualityFiles::v.

24  {
25  return out << '(' << v.v[0] <<", " << v.v[1] <<", "<< v.v[2] <<')';
26 }
tuple out
Definition: dbtoconf.py:99
Vec4< T > const & v
Definition: SSEVec.h:538

Variable Documentation

T theW

Definition at line 48 of file SSEVec.h.

T theX

Definition at line 48 of file SSEVec.h.

T theY

Definition at line 48 of file SSEVec.h.

T theZ

Definition at line 48 of file SSEVec.h.