Open 3D Engine AzCore API Reference 23.10.0
O3DE is an open-source, fully-featured, high-fidelity, modular 3D engine for building games and simulations, available to every industry.
AZ::Simd::Vec1 Struct Reference

Static Public Member Functions

static FloatType LoadAligned (const float *__restrict addr)
 
static Int32Type LoadAligned (const int32_t *__restrict addr)
 
static FloatType LoadUnaligned (const float *__restrict addr)
 
static Int32Type LoadUnaligned (const int32_t *__restrict addr)
 
static void StoreAligned (float *__restrict addr, FloatArgType value)
 
static void StoreAligned (int32_t *__restrict addr, Int32ArgType value)
 
static void StoreUnaligned (float *__restrict addr, FloatArgType value)
 
static void StoreUnaligned (int32_t *__restrict addr, Int32ArgType value)
 
static void StreamAligned (float *__restrict addr, FloatArgType value)
 
static void StreamAligned (int32_t *__restrict addr, Int32ArgType value)
 
static float SelectIndex0 (FloatArgType value)
 
static float AZ_MATH_INLINE SelectFirst (FloatArgType value)
 
static FloatType Splat (float value)
 
static Int32Type Splat (int32_t value)
 
static FloatType LoadImmediate (float x)
 
static Int32Type LoadImmediate (int32_t x)
 
static FloatType Add (FloatArgType arg1, FloatArgType arg2)
 
static FloatType Sub (FloatArgType arg1, FloatArgType arg2)
 
static FloatType Mul (FloatArgType arg1, FloatArgType arg2)
 
static FloatType Madd (FloatArgType mul1, FloatArgType mul2, FloatArgType add)
 
static FloatType Div (FloatArgType arg1, FloatArgType arg2)
 
static FloatType Abs (FloatArgType value)
 
static Int32Type Add (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type Sub (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type Mul (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type Madd (Int32ArgType mul1, Int32ArgType mul2, Int32ArgType add)
 
static Int32Type Abs (Int32ArgType value)
 
static FloatType Not (FloatArgType value)
 
static FloatType And (FloatArgType arg1, FloatArgType arg2)
 
static FloatType AndNot (FloatArgType arg1, FloatArgType arg2)
 
static FloatType Or (FloatArgType arg1, FloatArgType arg2)
 
static FloatType Xor (FloatArgType arg1, FloatArgType arg2)
 
static Int32Type Not (Int32ArgType value)
 
static Int32Type And (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type AndNot (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type Or (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type Xor (Int32ArgType arg1, Int32ArgType arg2)
 
static FloatType Floor (FloatArgType value)
 
static FloatType Ceil (FloatArgType value)
 
static FloatType Round (FloatArgType value)
 
static FloatType Truncate (FloatArgType value)
 
static FloatType Min (FloatArgType arg1, FloatArgType arg2)
 
static FloatType Max (FloatArgType arg1, FloatArgType arg2)
 
static FloatType Clamp (FloatArgType value, FloatArgType min, FloatArgType max)
 
static Int32Type Min (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type Max (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type Clamp (Int32ArgType value, Int32ArgType min, Int32ArgType max)
 
static FloatType CmpEq (FloatArgType arg1, FloatArgType arg2)
 
static FloatType CmpNeq (FloatArgType arg1, FloatArgType arg2)
 
static FloatType CmpGt (FloatArgType arg1, FloatArgType arg2)
 
static FloatType CmpGtEq (FloatArgType arg1, FloatArgType arg2)
 
static FloatType CmpLt (FloatArgType arg1, FloatArgType arg2)
 
static FloatType CmpLtEq (FloatArgType arg1, FloatArgType arg2)
 
static bool CmpAllEq (FloatArgType arg1, FloatArgType arg2)
 
static bool CmpAllLt (FloatArgType arg1, FloatArgType arg2)
 
static bool CmpAllLtEq (FloatArgType arg1, FloatArgType arg2)
 
static bool CmpAllGt (FloatArgType arg1, FloatArgType arg2)
 
static bool CmpAllGtEq (FloatArgType arg1, FloatArgType arg2)
 
static Int32Type CmpEq (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type CmpNeq (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type CmpGt (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type CmpGtEq (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type CmpLt (Int32ArgType arg1, Int32ArgType arg2)
 
static Int32Type CmpLtEq (Int32ArgType arg1, Int32ArgType arg2)
 
static bool CmpAllEq (Int32ArgType arg1, Int32ArgType arg2)
 
static FloatType Select (FloatArgType arg1, FloatArgType arg2, FloatArgType mask)
 
static Int32Type Select (Int32ArgType arg1, Int32ArgType arg2, Int32ArgType mask)
 
static FloatType Reciprocal (FloatArgType value)
 
static FloatType ReciprocalEstimate (FloatArgType value)
 
static FloatType Mod (FloatArgType value, FloatArgType divisor)
 Returns the floating point remainder of value / divisor.
 
static FloatType Wrap (FloatArgType value, FloatArgType minValue, FloatArgType maxValue)
 Wraps [minValue, maxValue].
 
static FloatType AngleMod (FloatArgType value)
 Wraps the angle into the [-pi, pi] range.
 
static FloatType Sqrt (FloatArgType value)
 
static FloatType SqrtEstimate (FloatArgType value)
 
static FloatType SqrtInv (FloatArgType value)
 
static FloatType SqrtInvEstimate (FloatArgType value)
 
static FloatType Sin (FloatArgType value)
 
static FloatType Cos (FloatArgType value)
 
static void SinCos (FloatArgType value, FloatType &sin, FloatType &cos)
 
static FloatType Acos (FloatArgType value)
 
static FloatType Atan (FloatArgType value)
 
static FloatType Atan2 (FloatArgType y, FloatArgType x)
 
static FloatType ExpEstimate (FloatArgType x)
 
static FloatType ConvertToFloat (Int32ArgType value)
 
static Int32Type ConvertToInt (FloatArgType value)
 
static Int32Type ConvertToIntNearest (FloatArgType value)
 
static FloatType CastToFloat (Int32ArgType value)
 
static Int32Type CastToInt (FloatArgType value)
 
static FloatType ZeroFloat ()
 
static Int32Type ZeroInt ()
 

Static Public Attributes

static constexpr int32_t ElementCount = 1
 

The documentation for this struct was generated from the following files: