|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Acos (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Asin (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Atan (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Atan2 (tf2Scalar x, tf2Scalar y) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Atan2Fast (tf2Scalar y, tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Cos (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Degrees (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE bool | tf2Equal (tf2Scalar a, tf2Scalar eps) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Exp (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Fabs (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Fmod (tf2Scalar x, tf2Scalar y) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Fsel (tf2Scalar a, tf2Scalar b, tf2Scalar c) |
|
TF2SIMD_FORCE_INLINE bool | tf2FuzzyZero (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE bool | tf2GreaterEqual (tf2Scalar a, tf2Scalar eps) |
|
TF2SIMD_FORCE_INLINE int | tf2IsNegative (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Log (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE bool | tf2MachineIsLittleEndian () |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2NormalizeAngle (tf2Scalar angleInRadians) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Pow (tf2Scalar x, tf2Scalar y) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Radians (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE unsigned | tf2Select (unsigned condition, unsigned valueIfConditionNonZero, unsigned valueIfConditionZero) |
|
TF2SIMD_FORCE_INLINE int | tf2Select (unsigned condition, int valueIfConditionNonZero, int valueIfConditionZero) |
|
TF2SIMD_FORCE_INLINE float | tf2Select (unsigned condition, float valueIfConditionNonZero, float valueIfConditionZero) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Sin (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Sqrt (tf2Scalar x) |
|
template<typename T > |
TF2SIMD_FORCE_INLINE void | tf2Swap (T &a, T &b) |
|
TF2SIMD_FORCE_INLINE unsigned | tf2SwapEndian (unsigned val) |
|
TF2SIMD_FORCE_INLINE unsigned short | tf2SwapEndian (unsigned short val) |
|
TF2SIMD_FORCE_INLINE unsigned | tf2SwapEndian (int val) |
|
TF2SIMD_FORCE_INLINE unsigned short | tf2SwapEndian (short val) |
|
TF2SIMD_FORCE_INLINE void | tf2SwapEndianDouble (double d, unsigned char *dst) |
|
TF2SIMD_FORCE_INLINE unsigned int | tf2SwapEndianFloat (float d) |
| tf2SwapFloat uses using char pointers to swap the endianness More...
|
|
TF2SIMD_FORCE_INLINE tf2Scalar | tf2Tan (tf2Scalar x) |
|
TF2SIMD_FORCE_INLINE double | tf2UnswapEndianDouble (const unsigned char *src) |
|
TF2SIMD_FORCE_INLINE float | tf2UnswapEndianFloat (unsigned int a) |
|
tf2SwapFloat uses using char pointers to swap the endianness
tf2SwapFloat/tf2SwapDouble will NOT return a float, because the machine might 'correct' invalid floating point values Not all values of sign/exponent/mantissa are valid floating point numbers according to IEEE 754. When a floating point unit is faced with an invalid value, it may actually change the value, or worse, throw an exception. In most systems, running user mode code, you wouldn't get an exception, but instead the hardware/os/runtime will 'fix' the number for you. so instead of returning a float/double, we return integer/long long integer
Definition at line 323 of file Scalar.h.