Math v0.0.1
u32x4

SIMD 4 component 32bit unsigned integer vector structure. (uint4) More...

#include <uint.hpp>

Public Member Functions

 u32x4 (const u32x4 &v)=default
 
u32x4operator= (const u32x4 &v)=default
 
 u32x4 () noexcept
 Creates a new zero initialized SIMD 4 component 32bit unsigned integer vector structure. (uint4)
 
 u32x4 (uint32 xyzw) noexcept
 Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)
 
 u32x4 (uint32 x, uint32 y, uint32 z, uint32 w) noexcept
 Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)
 
 u32x4 (uint32 x, uint32 y, uint32 z) noexcept
 Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)
 
 u32x4 (u32x4 xyz, uint32 w) noexcept
 Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)
 
 u32x4 (uint4 v) noexcept
 Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)
 
 u32x4 (uint3 v) noexcept
 Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)
 
 u32x4 (uint2 v) noexcept
 Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)
 
 u32x4 (const uint32 *v) noexcept
 Creates a new SIMD 4 component vector 32bit unsigned integer structure. (uint4)
 
void loadAligned (const uint32 *v) noexcept
 Loads SIMD 4 component 32bit unsigned integer aligned vector value.
 
void store (uint32 *v) noexcept
 Stores SIMD 4 component 32bit unsigned integer unaligned vector value.
 
void storeAligned (uint32 *v) noexcept
 Stores SIMD 4 component 32bit unsigned integer aligned vector value.
 
uint32 getX () const noexcept
 Returns SIMD vector first component value.
 
uint32 getY () const noexcept
 Returns SIMD vector second component value.
 
uint32 getZ () const noexcept
 Returns SIMD vector third component value.
 
uint32 getW () const noexcept
 Returns SIMD vector fourth component value.
 
void setX (uint32 value) noexcept
 Sets SIMD vector first component value.
 
void setY (uint32 value) noexcept
 Sets SIMD vector second component value.
 
void setZ (uint32 value) noexcept
 Sets SIMD vector third component value.
 
void setW (uint32 value) noexcept
 Sets SIMD vector fourth component value.
 
void fixW () noexcept
 Sets SIMD vector Z component value to the W component.
 
template<uint32 X, uint32 Y, uint32 Z, uint32 W>
u32x4 swizzle () const noexcept
 Swizzles SIMD vector components.
 
u32x4 splatX () const noexcept
 
u32x4 splatY () const noexcept
 
u32x4 splatZ () const noexcept
 
u32x4 splatW () const noexcept
 
uint32operator[] (psize i) noexcept
 Returns SIMD vector component by index.
 
uint32 operator[] (psize i) const noexcept
 Returns SIMD vector component by index.
 
 operator uint4 () const noexcept
 Returns SIMD vector as 4 component unsigned integer vector. (xyzw)
 
 operator uint3 () const noexcept
 Returns SIMD vector as 3 component unsigned integer vector. (xyz)
 
 operator uint2 () const noexcept
 Returns SIMD vector as 2 component unsigned integer vector. (xy)
 
 operator uint32 () const noexcept
 Returns SIMD first vector component value. (x)
 
u32x4 operator+ (u32x4 v) const noexcept
 
u32x4 operator- (u32x4 v) const noexcept
 
u32x4 operator* (u32x4 v) const noexcept
 
u32x4 operator/ (u32x4 v) const noexcept
 
u32x4 operator% (u32x4 v) const noexcept
 
u32x4 operator& (u32x4 v) const noexcept
 
u32x4 operator| (u32x4 v) const noexcept
 
u32x4 operator^ (u32x4 v) const noexcept
 
u32x4 operator>> (u32x4 v) const noexcept
 
u32x4 operator<< (u32x4 v) const noexcept
 
u32x4 operator>> (uint32 n) const noexcept
 
u32x4 operator<< (uint32 n) const noexcept
 
u32x4 operator! () const noexcept
 
u32x4 operator~ () const noexcept
 
u32x4 operator+ (uint32 n) const noexcept
 
u32x4 operator- (uint32 n) const noexcept
 
u32x4 operator* (uint32 n) const noexcept
 
u32x4 operator/ (uint32 n) const noexcept
 
u32x4 operator% (uint32 n) const noexcept
 
u32x4 operator& (uint32 n) const noexcept
 
u32x4 operator| (uint32 n) const noexcept
 
u32x4 operator^ (uint32 n) const noexcept
 
u32x4operator+= (u32x4 v) noexcept
 
u32x4operator-= (u32x4 v) noexcept
 
u32x4operator*= (u32x4 v) noexcept
 
u32x4operator/= (u32x4 v) noexcept
 
u32x4operator%= (u32x4 v) noexcept
 
u32x4operator&= (u32x4 v) noexcept
 
u32x4operator|= (u32x4 v) noexcept
 
u32x4operator^= (u32x4 v) noexcept
 
u32x4operator>>= (u32x4 v) noexcept
 
u32x4operator<<= (u32x4 v) noexcept
 
u32x4operator+= (uint32 n) noexcept
 
u32x4operator-= (uint32 n) noexcept
 
u32x4operator*= (uint32 n) noexcept
 
u32x4operator/= (uint32 n) noexcept
 
u32x4operator%= (uint32 n) noexcept
 
u32x4operator&= (uint32 n) noexcept
 
u32x4operator|= (uint32 n) noexcept
 
u32x4operator^= (uint32 n) noexcept
 
u32x4operator>>= (uint32 n) noexcept
 
u32x4operator<<= (uint32 n) noexcept
 
u32x4operator= (uint32 n) noexcept
 
bool operator== (u32x4 v) const noexcept
 
bool operator!= (u32x4 v) const noexcept
 
u32x4 operator< (u32x4 v) const noexcept
 
u32x4 operator> (u32x4 v) const noexcept
 
u32x4 operator<= (u32x4 v) const noexcept
 
u32x4 operator>= (u32x4 v) const noexcept
 
bool operator== (uint32 n) const noexcept
 
bool operator!= (uint32 n) const noexcept
 
u32x4 operator< (uint32 n) const noexcept
 
u32x4 operator> (uint32 n) const noexcept
 
u32x4 operator<= (uint32 n) const noexcept
 
u32x4 operator>= (uint32 n) const noexcept
 

Public Attributes

union { 
 
_simd_u128 data
 
uint4 uints
 
int4 ints
 
float4 floats
 
};  
 

Static Public Attributes

static const u32x4 zero = u32x4(0u)
 
static const u32x4 one = u32x4(1u)
 
static const u32x4 max = u32x4(UINT32_MAX)
 

Detailed Description

SIMD 4 component 32bit unsigned integer vector structure. (uint4)

Note
Use it when you know how to implement a faster vectorized code.

Constructor & Destructor Documentation

◆ u32x4() [1/8]

u32x4 ( uint32 xyzw)
inlineexplicitnoexcept

Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)

Parameters
xyzwtarget value for all vector components

◆ u32x4() [2/8]

u32x4 ( uint32 x,
uint32 y,
uint32 z,
uint32 w )
inlinenoexcept

Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)

Parameters
xfirst vector component value
ysecond vector component value
zthird vector component value
wfourth vector component value

◆ u32x4() [3/8]

u32x4 ( uint32 x,
uint32 y,
uint32 z )
inlinenoexcept

Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)

Warning
This constructor duplicates Z component to the W component!
Parameters
xfirst vector component value
ysecond vector component value
zthird vector component value

◆ u32x4() [4/8]

u32x4 ( u32x4 xyz,
uint32 w )
inlinenoexcept

Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)

Parameters
xyzfirst, second and third vector component values
wfourth vector component value

◆ u32x4() [5/8]

u32x4 ( uint4 v)
inlineexplicitnoexcept

Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)

Parameters
vtarget 4 component vector value

◆ u32x4() [6/8]

u32x4 ( uint3 v)
inlineexplicitnoexcept

Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)

Parameters
vtarget 3 component vector value

◆ u32x4() [7/8]

u32x4 ( uint2 v)
inlineexplicitnoexcept

Creates a new SIMD 4 component 32bit unsigned integer vector structure. (uint4)

Parameters
vtarget 2 component vector value

◆ u32x4() [8/8]

u32x4 ( const uint32 * v)
inlineexplicitnoexcept

Creates a new SIMD 4 component vector 32bit unsigned integer structure. (uint4)

Parameters
[in]vtarget 4 component vector value pointer (unaligned)

Member Function Documentation

◆ loadAligned()

void loadAligned ( const uint32 * v)
inlinenoexcept

Loads SIMD 4 component 32bit unsigned integer aligned vector value.

Warning
Specified vector pointer must be aligned in the memory!!!
Parameters
[in]vtarget 4 component vector value pointer (aligned)

◆ store()

void store ( uint32 * v)
inlinenoexcept

Stores SIMD 4 component 32bit unsigned integer unaligned vector value.

Parameters
[out]vtarget 4 component vector value pointer (unaligned)

◆ storeAligned()

void storeAligned ( uint32 * v)
inlinenoexcept

Stores SIMD 4 component 32bit unsigned integer aligned vector value.

Warning
Specified vector pointer must be aligned in the memory!!!
Parameters
[out]vtarget 4 component vector value pointer (aligned)

◆ setX()

void setX ( uint32 value)
inlinenoexcept

Sets SIMD vector first component value.

Parameters
valuetarget X vector component value

◆ setY()

void setY ( uint32 value)
inlinenoexcept

Sets SIMD vector second component value.

Parameters
valuetarget Y vector component value

◆ setZ()

void setZ ( uint32 value)
inlinenoexcept

Sets SIMD vector third component value.

Parameters
valuetarget Z vector component value

◆ setW()

void setW ( uint32 value)
inlinenoexcept

Sets SIMD vector fourth component value.

Parameters
valuetarget W vector component value

◆ fixW()

void fixW ( )
inlinenoexcept

Sets SIMD vector Z component value to the W component.

Note
Usefull when you want to prevent SIMD division by zero.

◆ swizzle()

template<uint32 X, uint32 Y, uint32 Z, uint32 W>
u32x4 swizzle ( ) const
inlinenoexcept

Swizzles SIMD vector components.

Template Parameters
Xfirst vector component swizzle index
Ysecond vector component swizzle index
Zthird vector component swizzle index
Wfourth vector component swizzle index

◆ operator[]() [1/2]

uint32 & operator[] ( psize i)
inlinenoexcept

Returns SIMD vector component by index.

Parameters
itarget component index

◆ operator[]() [2/2]

uint32 operator[] ( psize i) const
inlinenoexcept

Returns SIMD vector component by index.

Parameters
itarget component index