|
Generic SIMD Intrinsic Library API
0.6
|
: Generic SIMD Library header configuration file for generic implementation The common defintions for all generic implementations More...
Classes | |
| struct | svec |
| struct | svec< 4, bool > |
| Data representation and operations on a vector of 4 boolean values. This is used in predicated vector operations. Specifically the ith value of svec<4,bool> indicates whether the ith lane of a predicated vector operation is enabled or not. More... | |
| struct | svec< 4, int8_t > |
| data representation and operations on a vector of 4 signed chars. More... | |
| struct | svec< 4, uint8_t > |
| data representation and operations on a vector of 4 unsigned chars. More... | |
| struct | svec< 4, int16_t > |
| data representation and operations on a vector of 4 signed short. More... | |
| struct | svec< 4, uint16_t > |
| data representation and operations on a vector of 4 unsigned short. More... | |
| struct | svec< 4, int32_t > |
| data representation and operations on a vector of 4 signed int. More... | |
| struct | svec< 4, uint32_t > |
| data representation and operations on a vector of 4 unsigned int. More... | |
| struct | svec< 4, int64_t > |
| data representation and operations on a vector of 4 signed 64-bit int. More... | |
| struct | svec< 4, uint64_t > |
| data representation and operations on a vector of 4 unsigned 64-bit int. More... | |
| struct | svec< 4, float > |
| data representation and operations on a vector of 4 float. More... | |
| struct | svec< 4, double > |
| data representation and operations on a vector of 4 double. More... | |
| struct | svec< 4, void * > |
| data representation and operations on a vector of 4 pointers. This is only used in gather and scatter. More... | |
| struct | svec< 8, bool > |
| Data representation and operations on a vector of 8 boolean values. This is used in predicated vector operations. Specifically the ith value of svec<8,bool> indicates whether the ith lane of a predicated vector operation is enabled or not. More... | |
| struct | svec< 8, int8_t > |
| data representation and operations on a vector of 8 signed chars. More... | |
| struct | svec< 8, uint8_t > |
| data representation and operations on a vector of 8 unsigned chars. More... | |
| struct | svec< 8, int16_t > |
| data representation and operations on a vector of 8 signed short. More... | |
| struct | svec< 8, uint16_t > |
| data representation and operations on a vector of 8 unsigned short. More... | |
| struct | svec< 8, int32_t > |
| data representation and operations on a vector of 8 signed int. More... | |
| struct | svec< 8, uint32_t > |
| data representation and operations on a vector of 8 unsigned int. More... | |
| struct | svec< 8, int64_t > |
| data representation and operations on a vector of 8 signed long long. More... | |
| struct | svec< 8, uint64_t > |
| data representation and operations on a vector of 8 unsigned 64-bit int. More... | |
| struct | svec< 8, float > |
| data representation and operations on a vector of 8 float. More... | |
| struct | svec< 8, double > |
| data representation and operations on a vector of 8 double. More... | |
| struct | svec< 8, void * > |
| data representation and operations on a vector of 8 pointers. This is only used in gather and scatter. More... | |
Functions | |
| svec< 4, bool > | svec_select (bool cond, svec< 4, bool > a, svec< 4, bool > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, int8_t > | svec_select (bool cond, svec< 4, int8_t > a, svec< 4, int8_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, uint8_t > | svec_select (bool cond, svec< 4, uint8_t > a, svec< 4, uint8_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, int16_t > | svec_select (bool cond, svec< 4, int16_t > a, svec< 4, int16_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, uint16_t > | svec_select (bool cond, svec< 4, uint16_t > a, svec< 4, uint16_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, int32_t > | svec_select (bool cond, svec< 4, int32_t > a, svec< 4, int32_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, uint32_t > | svec_select (bool cond, svec< 4, uint32_t > a, svec< 4, uint32_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, int64_t > | svec_select (bool cond, svec< 4, int64_t > a, svec< 4, int64_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, uint64_t > | svec_select (bool cond, svec< 4, uint64_t > a, svec< 4, uint64_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, float > | svec_select (bool cond, svec< 4, float > a, svec< 4, float > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 4, double > | svec_select (bool cond, svec< 4, double > a, svec< 4, double > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| template<> | |
| svec< 4, int8_t > | svec_load_const< svec< 4, int8_t > > (const int8_t *p) |
| template<> | |
| svec< 4, int8_t > | svec_load_and_splat< svec< 4, int8_t > > (int8_t *p) |
| template<> | |
| svec< 4, uint8_t > | svec_load_const< svec< 4, uint8_t > > (const uint8_t *p) |
| template<> | |
| svec< 4, uint8_t > | svec_load_and_splat< svec< 4, uint8_t > > (uint8_t *p) |
| template<> | |
| svec< 4, int16_t > | svec_load_const< svec< 4, int16_t > > (const int16_t *p) |
| template<> | |
| svec< 4, int16_t > | svec_load_and_splat< svec< 4, int16_t > > (int16_t *p) |
| template<> | |
| svec< 4, uint16_t > | svec_load_const< svec< 4, uint16_t > > (const uint16_t *p) |
| template<> | |
| svec< 4, uint16_t > | svec_load_and_splat< svec< 4, uint16_t > > (uint16_t *p) |
| template<> | |
| svec< 4, int32_t > | svec_load_const< svec< 4, int32_t > > (const int32_t *p) |
| template<> | |
| svec< 4, int32_t > | svec_load_and_splat< svec< 4, int32_t > > (int32_t *p) |
| template<> | |
| svec< 4, uint32_t > | svec_load_const< svec< 4, uint32_t > > (const uint32_t *p) |
| template<> | |
| svec< 4, uint32_t > | svec_load_and_splat< svec< 4, uint32_t > > (uint32_t *p) |
| template<> | |
| svec< 4, int64_t > | svec_load_const< svec< 4, int64_t > > (const int64_t *p) |
| template<> | |
| svec< 4, int64_t > | svec_load_and_splat< svec< 4, int64_t > > (int64_t *p) |
| template<> | |
| svec< 4, uint64_t > | svec_load_const< svec< 4, uint64_t > > (const uint64_t *p) |
| template<> | |
| svec< 4, uint64_t > | svec_load_and_splat< svec< 4, uint64_t > > (uint64_t *p) |
| template<> | |
| svec< 4, float > | svec_load_const< svec< 4, float > > (const float *p) |
| template<> | |
| svec< 4, float > | svec_load_and_splat< svec< 4, float > > (float *p) |
| template<> | |
| svec< 4, double > | svec_load_const< svec< 4, double > > (const double *p) |
| template<> | |
| svec< 4, double > | svec_load_and_splat< svec< 4, double > > (double *p) |
| svec< 4, int32_t > | svec_madd (svec< 4, int32_t > a, svec< 4, int32_t > b, svec< 4, int32_t > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 4, int32_t > | svec_msub (svec< 4, int32_t > a, svec< 4, int32_t > b, svec< 4, int32_t > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 4, int32_t > | svec_nmsub (svec< 4, int32_t > a, svec< 4, int32_t > b, svec< 4, int32_t > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 4, uint32_t > | svec_madd (svec< 4, uint32_t > a, svec< 4, uint32_t > b, svec< 4, uint32_t > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 4, uint32_t > | svec_msub (svec< 4, uint32_t > a, svec< 4, uint32_t > b, svec< 4, uint32_t > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 4, uint32_t > | svec_nmsub (svec< 4, uint32_t > a, svec< 4, uint32_t > b, svec< 4, uint32_t > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 4, int64_t > | svec_madd (svec< 4, int64_t > a, svec< 4, int64_t > b, svec< 4, int64_t > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 4, int64_t > | svec_msub (svec< 4, int64_t > a, svec< 4, int64_t > b, svec< 4, int64_t > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 4, int64_t > | svec_nmsub (svec< 4, int64_t > a, svec< 4, int64_t > b, svec< 4, int64_t > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 4, uint64_t > | svec_madd (svec< 4, uint64_t > a, svec< 4, uint64_t > b, svec< 4, uint64_t > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 4, uint64_t > | svec_msub (svec< 4, uint64_t > a, svec< 4, uint64_t > b, svec< 4, uint64_t > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 4, uint64_t > | svec_nmsub (svec< 4, uint64_t > a, svec< 4, uint64_t > b, svec< 4, uint64_t > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 4, float > | svec_madd (svec< 4, float > a, svec< 4, float > b, svec< 4, float > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 4, float > | svec_msub (svec< 4, float > a, svec< 4, float > b, svec< 4, float > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 4, float > | svec_nmsub (svec< 4, float > a, svec< 4, float > b, svec< 4, float > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 4, double > | svec_madd (svec< 4, double > a, svec< 4, double > b, svec< 4, double > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 4, double > | svec_msub (svec< 4, double > a, svec< 4, double > b, svec< 4, double > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 4, double > | svec_nmsub (svec< 4, double > a, svec< 4, double > b, svec< 4, double > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 4,float > | svec_preduce_add (svec< 4, float > v0, svec< 4, float > v1, svec< 4, float > v2, svec< 4, float > v3) |
| svec< 4,double > | svec_preduce_add (svec< 4, double > v0, svec< 4, double > v1, svec< 4, double > v2, svec< 4, double > v3) |
| svec< 4,bool > | svec_masked_equal (svec< 4, int8_t > a, svec< 4, int8_t > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, int8_t > a, svec< 4, int8_t > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, int8_t > a, svec< 4, int8_t > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, int8_t > a, svec< 4, int8_t > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, int8_t > a, svec< 4, int8_t > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, int8_t > a, svec< 4, int8_t > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_equal (svec< 4, uint8_t > a, svec< 4, uint8_t > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, uint8_t > a, svec< 4, uint8_t > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, uint8_t > a, svec< 4, uint8_t > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, uint8_t > a, svec< 4, uint8_t > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, uint8_t > a, svec< 4, uint8_t > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, uint8_t > a, svec< 4, uint8_t > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_equal (svec< 4, int16_t > a, svec< 4, int16_t > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, int16_t > a, svec< 4, int16_t > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, int16_t > a, svec< 4, int16_t > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, int16_t > a, svec< 4, int16_t > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, int16_t > a, svec< 4, int16_t > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, int16_t > a, svec< 4, int16_t > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_equal (svec< 4, uint16_t > a, svec< 4, uint16_t > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, uint16_t > a, svec< 4, uint16_t > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, uint16_t > a, svec< 4, uint16_t > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, uint16_t > a, svec< 4, uint16_t > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, uint16_t > a, svec< 4, uint16_t > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, uint16_t > a, svec< 4, uint16_t > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_equal (svec< 4, int32_t > a, svec< 4, int32_t > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, int32_t > a, svec< 4, int32_t > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, int32_t > a, svec< 4, int32_t > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, int32_t > a, svec< 4, int32_t > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, int32_t > a, svec< 4, int32_t > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, int32_t > a, svec< 4, int32_t > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_equal (svec< 4, uint32_t > a, svec< 4, uint32_t > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, uint32_t > a, svec< 4, uint32_t > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, uint32_t > a, svec< 4, uint32_t > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, uint32_t > a, svec< 4, uint32_t > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, uint32_t > a, svec< 4, uint32_t > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, uint32_t > a, svec< 4, uint32_t > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_equal (svec< 4, int64_t > a, svec< 4, int64_t > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, int64_t > a, svec< 4, int64_t > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, int64_t > a, svec< 4, int64_t > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, int64_t > a, svec< 4, int64_t > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, int64_t > a, svec< 4, int64_t > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, int64_t > a, svec< 4, int64_t > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_equal (svec< 4, uint64_t > a, svec< 4, uint64_t > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, uint64_t > a, svec< 4, uint64_t > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, uint64_t > a, svec< 4, uint64_t > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, uint64_t > a, svec< 4, uint64_t > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, uint64_t > a, svec< 4, uint64_t > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, uint64_t > a, svec< 4, uint64_t > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_equal (svec< 4, float > a, svec< 4, float > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, float > a, svec< 4, float > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, float > a, svec< 4, float > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, float > a, svec< 4, float > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, float > a, svec< 4, float > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, float > a, svec< 4, float > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_equal (svec< 4, double > a, svec< 4, double > b, svec< 4, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_not_equal (svec< 4, double > a, svec< 4, double > b, svec< 4, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_than (svec< 4, double > a, svec< 4, double > b, svec< 4, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_less_equal (svec< 4, double > a, svec< 4, double > b, svec< 4, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_than (svec< 4, double > a, svec< 4, double > b, svec< 4, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 4,bool > | svec_masked_greater_equal (svec< 4, double > a, svec< 4, double > b, svec< 4, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, double > | svec_cast< svec< 4, double > > (svec< 4, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, bool > | svec_cast< svec< 4, bool > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int8_t > | svec_cast< svec< 4, int8_t > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint8_t > | svec_cast< svec< 4, uint8_t > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int16_t > | svec_cast< svec< 4, int16_t > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint16_t > | svec_cast< svec< 4, uint16_t > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int32_t > | svec_cast< svec< 4, int32_t > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint32_t > | svec_cast< svec< 4, uint32_t > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, int64_t > | svec_cast< svec< 4, int64_t > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, uint64_t > | svec_cast< svec< 4, uint64_t > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast< svec< 4, float > > (svec< 4, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 4, float > | svec_cast_bits< svec< 4, float > > (svec< 4, int32_t > val) |
| template<> | |
| svec< 4, float > | svec_cast_bits< svec< 4, float > > (svec< 4, uint32_t > val) |
| template<> | |
| svec< 4, int32_t > | svec_cast_bits< svec< 4, int32_t > > (svec< 4, float > val) |
| template<> | |
| svec< 4, uint32_t > | svec_cast_bits< svec< 4, uint32_t > > (svec< 4, float > val) |
| template<> | |
| svec< 4, double > | svec_cast_bits< svec< 4, double > > (svec< 4, int64_t > val) |
| template<> | |
| svec< 4, double > | svec_cast_bits< svec< 4, double > > (svec< 4, uint64_t > val) |
| template<> | |
| svec< 4, int64_t > | svec_cast_bits< svec< 4, int64_t > > (svec< 4, double > val) |
| template<> | |
| svec< 4, uint64_t > | svec_cast_bits< svec< 4, uint64_t > > (svec< 4, double > val) |
| svec< 4, int8_t > | operator+ (int8_t s, svec< 4, int8_t > a) |
| Add a scalar and a vector. More... | |
| svec< 4, int8_t > | operator- (int8_t s, svec< 4, int8_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, int8_t > | operator* (int8_t s, svec< 4, int8_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, int8_t > | operator/ (int8_t s, svec< 4, int8_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 4, uint8_t > | operator+ (uint8_t s, svec< 4, uint8_t > a) |
| Add a scalar and a vector. More... | |
| svec< 4, uint8_t > | operator- (uint8_t s, svec< 4, uint8_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, uint8_t > | operator* (uint8_t s, svec< 4, uint8_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, uint8_t > | operator/ (uint8_t s, svec< 4, uint8_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 4, int16_t > | operator+ (int16_t s, svec< 4, int16_t > a) |
| Add a scalar and a vector. More... | |
| svec< 4, int16_t > | operator- (int16_t s, svec< 4, int16_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, int16_t > | operator* (int16_t s, svec< 4, int16_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, int16_t > | operator/ (int16_t s, svec< 4, int16_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 4, uint16_t > | operator+ (uint16_t s, svec< 4, uint16_t > a) |
| Add a scalar and a vector. More... | |
| svec< 4, uint16_t > | operator- (uint16_t s, svec< 4, uint16_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, uint16_t > | operator* (uint16_t s, svec< 4, uint16_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, uint16_t > | operator/ (uint16_t s, svec< 4, uint16_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 4, int32_t > | operator+ (int32_t s, svec< 4, int32_t > a) |
| Add a scalar and a vector. More... | |
| svec< 4, int32_t > | operator- (int32_t s, svec< 4, int32_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, int32_t > | operator* (int32_t s, svec< 4, int32_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, int32_t > | operator/ (int32_t s, svec< 4, int32_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 4, uint32_t > | operator+ (uint32_t s, svec< 4, uint32_t > a) |
| Add a scalar and a vector. More... | |
| svec< 4, uint32_t > | operator- (uint32_t s, svec< 4, uint32_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, uint32_t > | operator* (uint32_t s, svec< 4, uint32_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, uint32_t > | operator/ (uint32_t s, svec< 4, uint32_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 4, int64_t > | operator+ (int64_t s, svec< 4, int64_t > a) |
| Add a scalar and a vector. More... | |
| svec< 4, int64_t > | operator- (int64_t s, svec< 4, int64_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, int64_t > | operator* (int64_t s, svec< 4, int64_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, int64_t > | operator/ (int64_t s, svec< 4, int64_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 4, uint64_t > | operator+ (uint64_t s, svec< 4, uint64_t > a) |
| Add a scalar and a vector. More... | |
| svec< 4, uint64_t > | operator- (uint64_t s, svec< 4, uint64_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, uint64_t > | operator* (uint64_t s, svec< 4, uint64_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, uint64_t > | operator/ (uint64_t s, svec< 4, uint64_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 4, float > | operator+ (float s, svec< 4, float > a) |
| Add a scalar and a vector. More... | |
| svec< 4, float > | operator- (float s, svec< 4, float > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, float > | operator* (float s, svec< 4, float > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, float > | operator/ (float s, svec< 4, float > a) |
| Divide a scalar by a vector. More... | |
| svec< 4, double > | operator+ (double s, svec< 4, double > a) |
| Add a scalar and a vector. More... | |
| svec< 4, double > | operator- (double s, svec< 4, double > a) |
| Sub a scalar and a vector. More... | |
| svec< 4, double > | operator* (double s, svec< 4, double > a) |
| Multiply a scalar and a vector. More... | |
| svec< 4, double > | operator/ (double s, svec< 4, double > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, bool > | svec_select (bool cond, svec< 8, bool > a, svec< 8, bool > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, int8_t > | svec_select (bool cond, svec< 8, int8_t > a, svec< 8, int8_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, uint8_t > | svec_select (bool cond, svec< 8, uint8_t > a, svec< 8, uint8_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, int16_t > | svec_select (bool cond, svec< 8, int16_t > a, svec< 8, int16_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, uint16_t > | svec_select (bool cond, svec< 8, uint16_t > a, svec< 8, uint16_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, int32_t > | svec_select (bool cond, svec< 8, int32_t > a, svec< 8, int32_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, uint32_t > | svec_select (bool cond, svec< 8, uint32_t > a, svec< 8, uint32_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, int64_t > | svec_select (bool cond, svec< 8, int64_t > a, svec< 8, int64_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, uint64_t > | svec_select (bool cond, svec< 8, uint64_t > a, svec< 8, uint64_t > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, float > | svec_select (bool cond, svec< 8, float > a, svec< 8, float > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| svec< 8, double > | svec_select (bool cond, svec< 8, double > a, svec< 8, double > b) |
| Select two TYPE vectors by a bool scalar. The same as cond ? a: b. More... | |
| template<> | |
| svec< 8, int8_t > | svec_load_const< svec< 8, int8_t > > (const int8_t *p) |
| template<> | |
| svec< 8, int8_t > | svec_load_and_splat< svec< 8, int8_t > > (int8_t *p) |
| template<> | |
| svec< 8, uint8_t > | svec_load_const< svec< 8, uint8_t > > (const uint8_t *p) |
| template<> | |
| svec< 8, uint8_t > | svec_load_and_splat< svec< 8, uint8_t > > (uint8_t *p) |
| template<> | |
| svec< 8, int16_t > | svec_load_const< svec< 8, int16_t > > (const int16_t *p) |
| template<> | |
| svec< 8, int16_t > | svec_load_and_splat< svec< 8, int16_t > > (int16_t *p) |
| template<> | |
| svec< 8, uint16_t > | svec_load_const< svec< 8, uint16_t > > (const uint16_t *p) |
| template<> | |
| svec< 8, uint16_t > | svec_load_and_splat< svec< 8, uint16_t > > (uint16_t *p) |
| template<> | |
| svec< 8, int32_t > | svec_load_const< svec< 8, int32_t > > (const int32_t *p) |
| template<> | |
| svec< 8, int32_t > | svec_load_and_splat< svec< 8, int32_t > > (int32_t *p) |
| template<> | |
| svec< 8, uint32_t > | svec_load_const< svec< 8, uint32_t > > (const uint32_t *p) |
| template<> | |
| svec< 8, uint32_t > | svec_load_and_splat< svec< 8, uint32_t > > (uint32_t *p) |
| template<> | |
| svec< 8, int64_t > | svec_load_const< svec< 8, int64_t > > (const int64_t *p) |
| template<> | |
| svec< 8, int64_t > | svec_load_and_splat< svec< 8, int64_t > > (int64_t *p) |
| template<> | |
| svec< 8, uint64_t > | svec_load_const< svec< 8, uint64_t > > (const uint64_t *p) |
| template<> | |
| svec< 8, uint64_t > | svec_load_and_splat< svec< 8, uint64_t > > (uint64_t *p) |
| template<> | |
| svec< 8, float > | svec_load_const< svec< 8, float > > (const float *p) |
| template<> | |
| svec< 8, float > | svec_load_and_splat< svec< 8, float > > (float *p) |
| template<> | |
| svec< 8, double > | svec_load_const< svec< 8, double > > (const double *p) |
| template<> | |
| svec< 8, double > | svec_load_and_splat< svec< 8, double > > (double *p) |
| svec< 8, int32_t > | svec_madd (svec< 8, int32_t > a, svec< 8, int32_t > b, svec< 8, int32_t > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 8, int32_t > | svec_msub (svec< 8, int32_t > a, svec< 8, int32_t > b, svec< 8, int32_t > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 8, int32_t > | svec_nmsub (svec< 8, int32_t > a, svec< 8, int32_t > b, svec< 8, int32_t > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 8, uint32_t > | svec_madd (svec< 8, uint32_t > a, svec< 8, uint32_t > b, svec< 8, uint32_t > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 8, uint32_t > | svec_msub (svec< 8, uint32_t > a, svec< 8, uint32_t > b, svec< 8, uint32_t > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 8, uint32_t > | svec_nmsub (svec< 8, uint32_t > a, svec< 8, uint32_t > b, svec< 8, uint32_t > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 8, int64_t > | svec_madd (svec< 8, int64_t > a, svec< 8, int64_t > b, svec< 8, int64_t > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 8, int64_t > | svec_msub (svec< 8, int64_t > a, svec< 8, int64_t > b, svec< 8, int64_t > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 8, int64_t > | svec_nmsub (svec< 8, int64_t > a, svec< 8, int64_t > b, svec< 8, int64_t > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 8, uint64_t > | svec_madd (svec< 8, uint64_t > a, svec< 8, uint64_t > b, svec< 8, uint64_t > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 8, uint64_t > | svec_msub (svec< 8, uint64_t > a, svec< 8, uint64_t > b, svec< 8, uint64_t > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 8, uint64_t > | svec_nmsub (svec< 8, uint64_t > a, svec< 8, uint64_t > b, svec< 8, uint64_t > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 8, float > | svec_madd (svec< 8, float > a, svec< 8, float > b, svec< 8, float > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 8, float > | svec_msub (svec< 8, float > a, svec< 8, float > b, svec< 8, float > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 8, float > | svec_nmsub (svec< 8, float > a, svec< 8, float > b, svec< 8, float > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 8, double > | svec_madd (svec< 8, double > a, svec< 8, double > b, svec< 8, double > c) |
| vector multiply and add operation. return a * b + c. More... | |
| svec< 8, double > | svec_msub (svec< 8, double > a, svec< 8, double > b, svec< 8, double > c) |
| vector multiply and add operation. return a * b - c. More... | |
| svec< 8, double > | svec_nmsub (svec< 8, double > a, svec< 8, double > b, svec< 8, double > c) |
| vector multiply and add operation. return -( a * b - c ). More... | |
| svec< 8,double > | svec_preduce_add (svec< 8, double > v0, svec< 8, double > v1, svec< 8, double > v2, svec< 8, double > v3, svec< 8, double > v4, svec< 8, double > v5, svec< 8, double > v6, svec< 8, double > v7) |
| svec< 8,bool > | svec_masked_equal (svec< 8, int8_t > a, svec< 8, int8_t > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, int8_t > a, svec< 8, int8_t > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, int8_t > a, svec< 8, int8_t > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, int8_t > a, svec< 8, int8_t > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, int8_t > a, svec< 8, int8_t > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, int8_t > a, svec< 8, int8_t > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_equal (svec< 8, uint8_t > a, svec< 8, uint8_t > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, uint8_t > a, svec< 8, uint8_t > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, uint8_t > a, svec< 8, uint8_t > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, uint8_t > a, svec< 8, uint8_t > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, uint8_t > a, svec< 8, uint8_t > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, uint8_t > a, svec< 8, uint8_t > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_equal (svec< 8, int16_t > a, svec< 8, int16_t > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, int16_t > a, svec< 8, int16_t > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, int16_t > a, svec< 8, int16_t > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, int16_t > a, svec< 8, int16_t > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, int16_t > a, svec< 8, int16_t > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, int16_t > a, svec< 8, int16_t > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_equal (svec< 8, uint16_t > a, svec< 8, uint16_t > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, uint16_t > a, svec< 8, uint16_t > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, uint16_t > a, svec< 8, uint16_t > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, uint16_t > a, svec< 8, uint16_t > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, uint16_t > a, svec< 8, uint16_t > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, uint16_t > a, svec< 8, uint16_t > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_equal (svec< 8, int32_t > a, svec< 8, int32_t > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, int32_t > a, svec< 8, int32_t > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, int32_t > a, svec< 8, int32_t > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, int32_t > a, svec< 8, int32_t > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, int32_t > a, svec< 8, int32_t > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, int32_t > a, svec< 8, int32_t > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_equal (svec< 8, uint32_t > a, svec< 8, uint32_t > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, uint32_t > a, svec< 8, uint32_t > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, uint32_t > a, svec< 8, uint32_t > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, uint32_t > a, svec< 8, uint32_t > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, uint32_t > a, svec< 8, uint32_t > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, uint32_t > a, svec< 8, uint32_t > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_equal (svec< 8, int64_t > a, svec< 8, int64_t > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, int64_t > a, svec< 8, int64_t > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, int64_t > a, svec< 8, int64_t > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, int64_t > a, svec< 8, int64_t > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, int64_t > a, svec< 8, int64_t > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, int64_t > a, svec< 8, int64_t > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_equal (svec< 8, uint64_t > a, svec< 8, uint64_t > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, uint64_t > a, svec< 8, uint64_t > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, uint64_t > a, svec< 8, uint64_t > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, uint64_t > a, svec< 8, uint64_t > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, uint64_t > a, svec< 8, uint64_t > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, uint64_t > a, svec< 8, uint64_t > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_equal (svec< 8, float > a, svec< 8, float > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, float > a, svec< 8, float > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, float > a, svec< 8, float > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, float > a, svec< 8, float > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, float > a, svec< 8, float > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, float > a, svec< 8, float > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_equal (svec< 8, double > a, svec< 8, double > b, svec< 8, bool > mask) |
| Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_not_equal (svec< 8, double > a, svec< 8, double > b, svec< 8, bool > mask) |
| Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_than (svec< 8, double > a, svec< 8, double > b, svec< 8, bool > mask) |
| Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_less_equal (svec< 8, double > a, svec< 8, double > b, svec< 8, bool > mask) |
| Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_than (svec< 8, double > a, svec< 8, double > b, svec< 8, bool > mask) |
| Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| svec< 8,bool > | svec_masked_greater_equal (svec< 8, double > a, svec< 8, double > b, svec< 8, bool > mask) |
| Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, bool > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, int8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, uint8_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, int16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, uint16_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, int32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, uint32_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, int64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, uint64_t > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, double > | svec_cast< svec< 8, double > > (svec< 8, float > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, bool > | svec_cast< svec< 8, bool > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int8_t > | svec_cast< svec< 8, int8_t > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint8_t > | svec_cast< svec< 8, uint8_t > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int16_t > | svec_cast< svec< 8, int16_t > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint16_t > | svec_cast< svec< 8, uint16_t > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int32_t > | svec_cast< svec< 8, int32_t > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint32_t > | svec_cast< svec< 8, uint32_t > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, int64_t > | svec_cast< svec< 8, int64_t > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, uint64_t > | svec_cast< svec< 8, uint64_t > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast< svec< 8, float > > (svec< 8, double > val) |
| cast val from FROM type to TO type. More... | |
| template<> | |
| svec< 8, float > | svec_cast_bits< svec< 8, float > > (svec< 8, int32_t > val) |
| template<> | |
| svec< 8, float > | svec_cast_bits< svec< 8, float > > (svec< 8, uint32_t > val) |
| template<> | |
| svec< 8, int32_t > | svec_cast_bits< svec< 8, int32_t > > (svec< 8, float > val) |
| template<> | |
| svec< 8, uint32_t > | svec_cast_bits< svec< 8, uint32_t > > (svec< 8, float > val) |
| template<> | |
| svec< 8, double > | svec_cast_bits< svec< 8, double > > (svec< 8, int64_t > val) |
| template<> | |
| svec< 8, double > | svec_cast_bits< svec< 8, double > > (svec< 8, uint64_t > val) |
| template<> | |
| svec< 8, int64_t > | svec_cast_bits< svec< 8, int64_t > > (svec< 8, double > val) |
| template<> | |
| svec< 8, uint64_t > | svec_cast_bits< svec< 8, uint64_t > > (svec< 8, double > val) |
| svec< 8, int8_t > | operator+ (int8_t s, svec< 8, int8_t > a) |
| Add a scalar and a vector. More... | |
| svec< 8, int8_t > | operator- (int8_t s, svec< 8, int8_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, int8_t > | operator* (int8_t s, svec< 8, int8_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, int8_t > | operator/ (int8_t s, svec< 8, int8_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, uint8_t > | operator+ (uint8_t s, svec< 8, uint8_t > a) |
| Add a scalar and a vector. More... | |
| svec< 8, uint8_t > | operator- (uint8_t s, svec< 8, uint8_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, uint8_t > | operator* (uint8_t s, svec< 8, uint8_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, uint8_t > | operator/ (uint8_t s, svec< 8, uint8_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, int16_t > | operator+ (int16_t s, svec< 8, int16_t > a) |
| Add a scalar and a vector. More... | |
| svec< 8, int16_t > | operator- (int16_t s, svec< 8, int16_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, int16_t > | operator* (int16_t s, svec< 8, int16_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, int16_t > | operator/ (int16_t s, svec< 8, int16_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, uint16_t > | operator+ (uint16_t s, svec< 8, uint16_t > a) |
| Add a scalar and a vector. More... | |
| svec< 8, uint16_t > | operator- (uint16_t s, svec< 8, uint16_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, uint16_t > | operator* (uint16_t s, svec< 8, uint16_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, uint16_t > | operator/ (uint16_t s, svec< 8, uint16_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, int32_t > | operator+ (int32_t s, svec< 8, int32_t > a) |
| Add a scalar and a vector. More... | |
| svec< 8, int32_t > | operator- (int32_t s, svec< 8, int32_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, int32_t > | operator* (int32_t s, svec< 8, int32_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, int32_t > | operator/ (int32_t s, svec< 8, int32_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, uint32_t > | operator+ (uint32_t s, svec< 8, uint32_t > a) |
| Add a scalar and a vector. More... | |
| svec< 8, uint32_t > | operator- (uint32_t s, svec< 8, uint32_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, uint32_t > | operator* (uint32_t s, svec< 8, uint32_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, uint32_t > | operator/ (uint32_t s, svec< 8, uint32_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, int64_t > | operator+ (int64_t s, svec< 8, int64_t > a) |
| Add a scalar and a vector. More... | |
| svec< 8, int64_t > | operator- (int64_t s, svec< 8, int64_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, int64_t > | operator* (int64_t s, svec< 8, int64_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, int64_t > | operator/ (int64_t s, svec< 8, int64_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, uint64_t > | operator+ (uint64_t s, svec< 8, uint64_t > a) |
| Add a scalar and a vector. More... | |
| svec< 8, uint64_t > | operator- (uint64_t s, svec< 8, uint64_t > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, uint64_t > | operator* (uint64_t s, svec< 8, uint64_t > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, uint64_t > | operator/ (uint64_t s, svec< 8, uint64_t > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, float > | operator+ (float s, svec< 8, float > a) |
| Add a scalar and a vector. More... | |
| svec< 8, float > | operator- (float s, svec< 8, float > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, float > | operator* (float s, svec< 8, float > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, float > | operator/ (float s, svec< 8, float > a) |
| Divide a scalar by a vector. More... | |
| svec< 8, double > | operator+ (double s, svec< 8, double > a) |
| Add a scalar and a vector. More... | |
| svec< 8, double > | operator- (double s, svec< 8, double > a) |
| Sub a scalar and a vector. More... | |
| svec< 8, double > | operator* (double s, svec< 8, double > a) |
| Multiply a scalar and a vector. More... | |
| svec< 8, double > | operator/ (double s, svec< 8, double > a) |
| Divide a scalar by a vector. More... | |
: Generic SIMD Library header configuration file for generic implementation The common defintions for all generic implementations
Copyright 2012 the Generic SIMD Intrinsic Library project authors. All rights reserved.
Copyright IBM Corp. 2013, 2013. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of IBM Corp. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. generic.h
Created on: Oct.7, 2013
| svec< 4 , int8_t > generic::operator* | ( | int8_t | s, |
| svec< 4, int8_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , uint8_t > generic::operator* | ( | uint8_t | s, |
| svec< 4, uint8_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , int16_t > generic::operator* | ( | int16_t | s, |
| svec< 4, int16_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , uint16_t > generic::operator* | ( | uint16_t | s, |
| svec< 4, uint16_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , int32_t > generic::operator* | ( | int32_t | s, |
| svec< 4, int32_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , uint32_t > generic::operator* | ( | uint32_t | s, |
| svec< 4, uint32_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , int64_t > generic::operator* | ( | int64_t | s, |
| svec< 4, int64_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , uint64_t > generic::operator* | ( | uint64_t | s, |
| svec< 4, uint64_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , float > generic::operator* | ( | float | s, |
| svec< 4, float > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , double > generic::operator* | ( | double | s, |
| svec< 4, double > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , int8_t > generic::operator* | ( | int8_t | s, |
| svec< 8, int8_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , uint8_t > generic::operator* | ( | uint8_t | s, |
| svec< 8, uint8_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , int16_t > generic::operator* | ( | int16_t | s, |
| svec< 8, int16_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , uint16_t > generic::operator* | ( | uint16_t | s, |
| svec< 8, uint16_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , int32_t > generic::operator* | ( | int32_t | s, |
| svec< 8, int32_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , uint32_t > generic::operator* | ( | uint32_t | s, |
| svec< 8, uint32_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , int64_t > generic::operator* | ( | int64_t | s, |
| svec< 8, int64_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , uint64_t > generic::operator* | ( | uint64_t | s, |
| svec< 8, uint64_t > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , float > generic::operator* | ( | float | s, |
| svec< 8, float > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 8 , double > generic::operator* | ( | double | s, |
| svec< 8, double > | a | ||
| ) |
Multiply a scalar and a vector.
| svec< 4 , int8_t > generic::operator+ | ( | int8_t | s, |
| svec< 4, int8_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , uint8_t > generic::operator+ | ( | uint8_t | s, |
| svec< 4, uint8_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , int16_t > generic::operator+ | ( | int16_t | s, |
| svec< 4, int16_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , uint16_t > generic::operator+ | ( | uint16_t | s, |
| svec< 4, uint16_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , int32_t > generic::operator+ | ( | int32_t | s, |
| svec< 4, int32_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , uint32_t > generic::operator+ | ( | uint32_t | s, |
| svec< 4, uint32_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , int64_t > generic::operator+ | ( | int64_t | s, |
| svec< 4, int64_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , uint64_t > generic::operator+ | ( | uint64_t | s, |
| svec< 4, uint64_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , float > generic::operator+ | ( | float | s, |
| svec< 4, float > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , double > generic::operator+ | ( | double | s, |
| svec< 4, double > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , int8_t > generic::operator+ | ( | int8_t | s, |
| svec< 8, int8_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , uint8_t > generic::operator+ | ( | uint8_t | s, |
| svec< 8, uint8_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , int16_t > generic::operator+ | ( | int16_t | s, |
| svec< 8, int16_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , uint16_t > generic::operator+ | ( | uint16_t | s, |
| svec< 8, uint16_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , int32_t > generic::operator+ | ( | int32_t | s, |
| svec< 8, int32_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , uint32_t > generic::operator+ | ( | uint32_t | s, |
| svec< 8, uint32_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , int64_t > generic::operator+ | ( | int64_t | s, |
| svec< 8, int64_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , uint64_t > generic::operator+ | ( | uint64_t | s, |
| svec< 8, uint64_t > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , float > generic::operator+ | ( | float | s, |
| svec< 8, float > | a | ||
| ) |
Add a scalar and a vector.
| svec< 8 , double > generic::operator+ | ( | double | s, |
| svec< 8, double > | a | ||
| ) |
Add a scalar and a vector.
| svec< 4 , int8_t > generic::operator- | ( | int8_t | s, |
| svec< 4, int8_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , uint8_t > generic::operator- | ( | uint8_t | s, |
| svec< 4, uint8_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , int16_t > generic::operator- | ( | int16_t | s, |
| svec< 4, int16_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , uint16_t > generic::operator- | ( | uint16_t | s, |
| svec< 4, uint16_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , int32_t > generic::operator- | ( | int32_t | s, |
| svec< 4, int32_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , uint32_t > generic::operator- | ( | uint32_t | s, |
| svec< 4, uint32_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , int64_t > generic::operator- | ( | int64_t | s, |
| svec< 4, int64_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , uint64_t > generic::operator- | ( | uint64_t | s, |
| svec< 4, uint64_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , float > generic::operator- | ( | float | s, |
| svec< 4, float > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , double > generic::operator- | ( | double | s, |
| svec< 4, double > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , int8_t > generic::operator- | ( | int8_t | s, |
| svec< 8, int8_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , uint8_t > generic::operator- | ( | uint8_t | s, |
| svec< 8, uint8_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , int16_t > generic::operator- | ( | int16_t | s, |
| svec< 8, int16_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , uint16_t > generic::operator- | ( | uint16_t | s, |
| svec< 8, uint16_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , int32_t > generic::operator- | ( | int32_t | s, |
| svec< 8, int32_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , uint32_t > generic::operator- | ( | uint32_t | s, |
| svec< 8, uint32_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , int64_t > generic::operator- | ( | int64_t | s, |
| svec< 8, int64_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , uint64_t > generic::operator- | ( | uint64_t | s, |
| svec< 8, uint64_t > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , float > generic::operator- | ( | float | s, |
| svec< 8, float > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 8 , double > generic::operator- | ( | double | s, |
| svec< 8, double > | a | ||
| ) |
Sub a scalar and a vector.
| svec< 4 , int8_t > generic::operator/ | ( | int8_t | s, |
| svec< 4, int8_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 4 , uint8_t > generic::operator/ | ( | uint8_t | s, |
| svec< 4, uint8_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 4 , int16_t > generic::operator/ | ( | int16_t | s, |
| svec< 4, int16_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 4 , uint16_t > generic::operator/ | ( | uint16_t | s, |
| svec< 4, uint16_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 4 , int32_t > generic::operator/ | ( | int32_t | s, |
| svec< 4, int32_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 4 , uint32_t > generic::operator/ | ( | uint32_t | s, |
| svec< 4, uint32_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 4 , int64_t > generic::operator/ | ( | int64_t | s, |
| svec< 4, int64_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 4 , uint64_t > generic::operator/ | ( | uint64_t | s, |
| svec< 4, uint64_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 4 , float > generic::operator/ | ( | float | s, |
| svec< 4, float > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 4 , double > generic::operator/ | ( | double | s, |
| svec< 4, double > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , int8_t > generic::operator/ | ( | int8_t | s, |
| svec< 8, int8_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , uint8_t > generic::operator/ | ( | uint8_t | s, |
| svec< 8, uint8_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , int16_t > generic::operator/ | ( | int16_t | s, |
| svec< 8, int16_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , uint16_t > generic::operator/ | ( | uint16_t | s, |
| svec< 8, uint16_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , int32_t > generic::operator/ | ( | int32_t | s, |
| svec< 8, int32_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , uint32_t > generic::operator/ | ( | uint32_t | s, |
| svec< 8, uint32_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , int64_t > generic::operator/ | ( | int64_t | s, |
| svec< 8, int64_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , uint64_t > generic::operator/ | ( | uint64_t | s, |
| svec< 8, uint64_t > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , float > generic::operator/ | ( | float | s, |
| svec< 8, float > | a | ||
| ) |
Divide a scalar by a vector.
| svec< 8 , double > generic::operator/ | ( | double | s, |
| svec< 8, double > | a | ||
| ) |
Divide a scalar by a vector.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 4 , uint16_t > generic::svec_cast< svec< 4, uint16_t > > | ( | svec< 4, uint32_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 4 , uint16_t > generic::svec_cast< svec< 4, uint16_t > > | ( | svec< 4, uint64_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 4 , uint32_t > generic::svec_cast< svec< 4, uint32_t > > | ( | svec< 4, uint16_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 4 , uint32_t > generic::svec_cast< svec< 4, uint32_t > > | ( | svec< 4, uint64_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 4 , uint64_t > generic::svec_cast< svec< 4, uint64_t > > | ( | svec< 4, uint16_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 4 , uint64_t > generic::svec_cast< svec< 4, uint64_t > > | ( | svec< 4, uint32_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 8 , uint16_t > generic::svec_cast< svec< 8, uint16_t > > | ( | svec< 8, uint32_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 8 , uint16_t > generic::svec_cast< svec< 8, uint16_t > > | ( | svec< 8, uint64_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 8 , uint32_t > generic::svec_cast< svec< 8, uint32_t > > | ( | svec< 8, uint16_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 8 , uint32_t > generic::svec_cast< svec< 8, uint32_t > > | ( | svec< 8, uint64_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 8 , uint64_t > generic::svec_cast< svec< 8, uint64_t > > | ( | svec< 8, uint16_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 8 , uint64_t > generic::svec_cast< svec< 8, uint64_t > > | ( | svec< 8, uint32_t > | val | ) |
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
cast val from FROM type to TO type.
| svec< 4 , double > generic::svec_cast_bits< svec< 4, double > > | ( | svec< 4, int64_t > | val | ) |
| svec< 4 , double > generic::svec_cast_bits< svec< 4, double > > | ( | svec< 4, uint64_t > | val | ) |
| svec< 4 , int32_t > generic::svec_cast_bits< svec< 4, int32_t > > | ( | svec< 4, float > | val | ) |
| svec< 4 , int64_t > generic::svec_cast_bits< svec< 4, int64_t > > | ( | svec< 4, double > | val | ) |
| svec< 4 , uint32_t > generic::svec_cast_bits< svec< 4, uint32_t > > | ( | svec< 4, float > | val | ) |
| svec< 4 , uint64_t > generic::svec_cast_bits< svec< 4, uint64_t > > | ( | svec< 4, double > | val | ) |
| svec< 8 , double > generic::svec_cast_bits< svec< 8, double > > | ( | svec< 8, int64_t > | val | ) |
| svec< 8 , double > generic::svec_cast_bits< svec< 8, double > > | ( | svec< 8, uint64_t > | val | ) |
| svec< 8 , int32_t > generic::svec_cast_bits< svec< 8, int32_t > > | ( | svec< 8, float > | val | ) |
| svec< 8 , int64_t > generic::svec_cast_bits< svec< 8, int64_t > > | ( | svec< 8, double > | val | ) |
| svec< 8 , uint32_t > generic::svec_cast_bits< svec< 8, uint32_t > > | ( | svec< 8, float > | val | ) |
| svec< 8 , uint64_t > generic::svec_cast_bits< svec< 8, uint64_t > > | ( | svec< 8, double > | val | ) |
| svec< 4 , uint16_t > generic::svec_load_const< svec< 4, uint16_t > > | ( | const uint16_t * | p | ) |
| svec< 4 , uint32_t > generic::svec_load_const< svec< 4, uint32_t > > | ( | const uint32_t * | p | ) |
| svec< 4 , uint64_t > generic::svec_load_const< svec< 4, uint64_t > > | ( | const uint64_t * | p | ) |
| svec< 8 , uint16_t > generic::svec_load_const< svec< 8, uint16_t > > | ( | const uint16_t * | p | ) |
| svec< 8 , uint32_t > generic::svec_load_const< svec< 8, uint32_t > > | ( | const uint32_t * | p | ) |
| svec< 8 , uint64_t > generic::svec_load_const< svec< 8, uint64_t > > | ( | const uint64_t * | p | ) |
| svec< 4 , int32_t > generic::svec_madd | ( | svec< 4, int32_t > | a, |
| svec< 4, int32_t > | b, | ||
| svec< 4, int32_t > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 4 , uint32_t > generic::svec_madd | ( | svec< 4, uint32_t > | a, |
| svec< 4, uint32_t > | b, | ||
| svec< 4, uint32_t > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 4 , int64_t > generic::svec_madd | ( | svec< 4, int64_t > | a, |
| svec< 4, int64_t > | b, | ||
| svec< 4, int64_t > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 4 , uint64_t > generic::svec_madd | ( | svec< 4, uint64_t > | a, |
| svec< 4, uint64_t > | b, | ||
| svec< 4, uint64_t > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 4 , float > generic::svec_madd | ( | svec< 4, float > | a, |
| svec< 4, float > | b, | ||
| svec< 4, float > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 4 , double > generic::svec_madd | ( | svec< 4, double > | a, |
| svec< 4, double > | b, | ||
| svec< 4, double > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 8 , int32_t > generic::svec_madd | ( | svec< 8, int32_t > | a, |
| svec< 8, int32_t > | b, | ||
| svec< 8, int32_t > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 8 , uint32_t > generic::svec_madd | ( | svec< 8, uint32_t > | a, |
| svec< 8, uint32_t > | b, | ||
| svec< 8, uint32_t > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 8 , int64_t > generic::svec_madd | ( | svec< 8, int64_t > | a, |
| svec< 8, int64_t > | b, | ||
| svec< 8, int64_t > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 8 , uint64_t > generic::svec_madd | ( | svec< 8, uint64_t > | a, |
| svec< 8, uint64_t > | b, | ||
| svec< 8, uint64_t > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 8 , float > generic::svec_madd | ( | svec< 8, float > | a, |
| svec< 8, float > | b, | ||
| svec< 8, float > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 8 , double > generic::svec_madd | ( | svec< 8, double > | a, |
| svec< 8, double > | b, | ||
| svec< 8, double > | c | ||
| ) |
vector multiply and add operation. return a * b + c.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, int8_t > | a, |
| svec< 4, int8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, uint8_t > | a, |
| svec< 4, uint8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, int16_t > | a, |
| svec< 4, int16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, uint16_t > | a, |
| svec< 4, uint16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, int32_t > | a, |
| svec< 4, int32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, uint32_t > | a, |
| svec< 4, uint32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, int64_t > | a, |
| svec< 4, int64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, uint64_t > | a, |
| svec< 4, uint64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, float > | a, |
| svec< 4, float > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_equal | ( | svec< 4, double > | a, |
| svec< 4, double > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, int8_t > | a, |
| svec< 8, int8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, uint8_t > | a, |
| svec< 8, uint8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, int16_t > | a, |
| svec< 8, int16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, uint16_t > | a, |
| svec< 8, uint16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, int32_t > | a, |
| svec< 8, int32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, uint32_t > | a, |
| svec< 8, uint32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, int64_t > | a, |
| svec< 8, int64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, uint64_t > | a, |
| svec< 8, uint64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, float > | a, |
| svec< 8, float > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_equal | ( | svec< 8, double > | a, |
| svec< 8, double > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, int8_t > | a, |
| svec< 4, int8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, uint8_t > | a, |
| svec< 4, uint8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, int16_t > | a, |
| svec< 4, int16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, uint16_t > | a, |
| svec< 4, uint16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, int32_t > | a, |
| svec< 4, int32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, uint32_t > | a, |
| svec< 4, uint32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, int64_t > | a, |
| svec< 4, int64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, uint64_t > | a, |
| svec< 4, uint64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, float > | a, |
| svec< 4, float > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_equal | ( | svec< 4, double > | a, |
| svec< 4, double > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, int8_t > | a, |
| svec< 8, int8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, uint8_t > | a, |
| svec< 8, uint8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, int16_t > | a, |
| svec< 8, int16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, uint16_t > | a, |
| svec< 8, uint16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, int32_t > | a, |
| svec< 8, int32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, uint32_t > | a, |
| svec< 8, uint32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, int64_t > | a, |
| svec< 8, int64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, uint64_t > | a, |
| svec< 8, uint64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, float > | a, |
| svec< 8, float > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_equal | ( | svec< 8, double > | a, |
| svec< 8, double > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, int8_t > | a, |
| svec< 4, int8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, uint8_t > | a, |
| svec< 4, uint8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, int16_t > | a, |
| svec< 4, int16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, uint16_t > | a, |
| svec< 4, uint16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, int32_t > | a, |
| svec< 4, int32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, uint32_t > | a, |
| svec< 4, uint32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, int64_t > | a, |
| svec< 4, int64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, uint64_t > | a, |
| svec< 4, uint64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, float > | a, |
| svec< 4, float > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_greater_than | ( | svec< 4, double > | a, |
| svec< 4, double > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, int8_t > | a, |
| svec< 8, int8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, uint8_t > | a, |
| svec< 8, uint8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, int16_t > | a, |
| svec< 8, int16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, uint16_t > | a, |
| svec< 8, uint16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, int32_t > | a, |
| svec< 8, int32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, uint32_t > | a, |
| svec< 8, uint32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, int64_t > | a, |
| svec< 8, int64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, uint64_t > | a, |
| svec< 8, uint64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, float > | a, |
| svec< 8, float > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_greater_than | ( | svec< 8, double > | a, |
| svec< 8, double > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do greater_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, int8_t > | a, |
| svec< 4, int8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, uint8_t > | a, |
| svec< 4, uint8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, int16_t > | a, |
| svec< 4, int16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, uint16_t > | a, |
| svec< 4, uint16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, int32_t > | a, |
| svec< 4, int32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, uint32_t > | a, |
| svec< 4, uint32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, int64_t > | a, |
| svec< 4, int64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, uint64_t > | a, |
| svec< 4, uint64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, float > | a, |
| svec< 4, float > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_equal | ( | svec< 4, double > | a, |
| svec< 4, double > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, int8_t > | a, |
| svec< 8, int8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, uint8_t > | a, |
| svec< 8, uint8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, int16_t > | a, |
| svec< 8, int16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, uint16_t > | a, |
| svec< 8, uint16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, int32_t > | a, |
| svec< 8, int32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, uint32_t > | a, |
| svec< 8, uint32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, int64_t > | a, |
| svec< 8, int64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, uint64_t > | a, |
| svec< 8, uint64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, float > | a, |
| svec< 8, float > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_equal | ( | svec< 8, double > | a, |
| svec< 8, double > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, int8_t > | a, |
| svec< 4, int8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, uint8_t > | a, |
| svec< 4, uint8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, int16_t > | a, |
| svec< 4, int16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, uint16_t > | a, |
| svec< 4, uint16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, int32_t > | a, |
| svec< 4, int32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, uint32_t > | a, |
| svec< 4, uint32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, int64_t > | a, |
| svec< 4, int64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, uint64_t > | a, |
| svec< 4, uint64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, float > | a, |
| svec< 4, float > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_less_than | ( | svec< 4, double > | a, |
| svec< 4, double > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, int8_t > | a, |
| svec< 8, int8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, uint8_t > | a, |
| svec< 8, uint8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, int16_t > | a, |
| svec< 8, int16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, uint16_t > | a, |
| svec< 8, uint16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, int32_t > | a, |
| svec< 8, int32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, uint32_t > | a, |
| svec< 8, uint32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, int64_t > | a, |
| svec< 8, int64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, uint64_t > | a, |
| svec< 8, uint64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, float > | a, |
| svec< 8, float > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_less_than | ( | svec< 8, double > | a, |
| svec< 8, double > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do less_than operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, int8_t > | a, |
| svec< 4, int8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, uint8_t > | a, |
| svec< 4, uint8_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, int16_t > | a, |
| svec< 4, int16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, uint16_t > | a, |
| svec< 4, uint16_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, int32_t > | a, |
| svec< 4, int32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, uint32_t > | a, |
| svec< 4, uint32_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, int64_t > | a, |
| svec< 4, int64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, uint64_t > | a, |
| svec< 4, uint64_t > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, float > | a, |
| svec< 4, float > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 ,bool> generic::svec_masked_not_equal | ( | svec< 4, double > | a, |
| svec< 4, double > | b, | ||
| svec< 4, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, int8_t > | a, |
| svec< 8, int8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, uint8_t > | a, |
| svec< 8, uint8_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, int16_t > | a, |
| svec< 8, int16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, uint16_t > | a, |
| svec< 8, uint16_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, int32_t > | a, |
| svec< 8, int32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, uint32_t > | a, |
| svec< 8, uint32_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, int64_t > | a, |
| svec< 8, int64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, uint64_t > | a, |
| svec< 8, uint64_t > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, float > | a, |
| svec< 8, float > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 8 ,bool> generic::svec_masked_not_equal | ( | svec< 8, double > | a, |
| svec< 8, double > | b, | ||
| svec< 8, bool > | mask | ||
| ) |
Do not_equal operation on a and b with mask * If mask is true, return the compare result, otherwise return false.
| svec< 4 , int32_t > generic::svec_msub | ( | svec< 4, int32_t > | a, |
| svec< 4, int32_t > | b, | ||
| svec< 4, int32_t > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 4 , uint32_t > generic::svec_msub | ( | svec< 4, uint32_t > | a, |
| svec< 4, uint32_t > | b, | ||
| svec< 4, uint32_t > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 4 , int64_t > generic::svec_msub | ( | svec< 4, int64_t > | a, |
| svec< 4, int64_t > | b, | ||
| svec< 4, int64_t > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 4 , uint64_t > generic::svec_msub | ( | svec< 4, uint64_t > | a, |
| svec< 4, uint64_t > | b, | ||
| svec< 4, uint64_t > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 4 , float > generic::svec_msub | ( | svec< 4, float > | a, |
| svec< 4, float > | b, | ||
| svec< 4, float > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 4 , double > generic::svec_msub | ( | svec< 4, double > | a, |
| svec< 4, double > | b, | ||
| svec< 4, double > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 8 , int32_t > generic::svec_msub | ( | svec< 8, int32_t > | a, |
| svec< 8, int32_t > | b, | ||
| svec< 8, int32_t > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 8 , uint32_t > generic::svec_msub | ( | svec< 8, uint32_t > | a, |
| svec< 8, uint32_t > | b, | ||
| svec< 8, uint32_t > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 8 , int64_t > generic::svec_msub | ( | svec< 8, int64_t > | a, |
| svec< 8, int64_t > | b, | ||
| svec< 8, int64_t > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 8 , uint64_t > generic::svec_msub | ( | svec< 8, uint64_t > | a, |
| svec< 8, uint64_t > | b, | ||
| svec< 8, uint64_t > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 8 , float > generic::svec_msub | ( | svec< 8, float > | a, |
| svec< 8, float > | b, | ||
| svec< 8, float > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 8 , double > generic::svec_msub | ( | svec< 8, double > | a, |
| svec< 8, double > | b, | ||
| svec< 8, double > | c | ||
| ) |
vector multiply and add operation. return a * b - c.
| svec< 4 , int32_t > generic::svec_nmsub | ( | svec< 4, int32_t > | a, |
| svec< 4, int32_t > | b, | ||
| svec< 4, int32_t > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 4 , uint32_t > generic::svec_nmsub | ( | svec< 4, uint32_t > | a, |
| svec< 4, uint32_t > | b, | ||
| svec< 4, uint32_t > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 4 , int64_t > generic::svec_nmsub | ( | svec< 4, int64_t > | a, |
| svec< 4, int64_t > | b, | ||
| svec< 4, int64_t > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 4 , uint64_t > generic::svec_nmsub | ( | svec< 4, uint64_t > | a, |
| svec< 4, uint64_t > | b, | ||
| svec< 4, uint64_t > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 4 , float > generic::svec_nmsub | ( | svec< 4, float > | a, |
| svec< 4, float > | b, | ||
| svec< 4, float > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 4 , double > generic::svec_nmsub | ( | svec< 4, double > | a, |
| svec< 4, double > | b, | ||
| svec< 4, double > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 8 , int32_t > generic::svec_nmsub | ( | svec< 8, int32_t > | a, |
| svec< 8, int32_t > | b, | ||
| svec< 8, int32_t > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 8 , uint32_t > generic::svec_nmsub | ( | svec< 8, uint32_t > | a, |
| svec< 8, uint32_t > | b, | ||
| svec< 8, uint32_t > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 8 , int64_t > generic::svec_nmsub | ( | svec< 8, int64_t > | a, |
| svec< 8, int64_t > | b, | ||
| svec< 8, int64_t > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 8 , uint64_t > generic::svec_nmsub | ( | svec< 8, uint64_t > | a, |
| svec< 8, uint64_t > | b, | ||
| svec< 8, uint64_t > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 8 , float > generic::svec_nmsub | ( | svec< 8, float > | a, |
| svec< 8, float > | b, | ||
| svec< 8, float > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 8 , double > generic::svec_nmsub | ( | svec< 8, double > | a, |
| svec< 8, double > | b, | ||
| svec< 8, double > | c | ||
| ) |
vector multiply and add operation. return -( a * b - c ).
| svec< 4 ,float> generic::svec_preduce_add | ( | svec< 4, float > | v0, |
| svec< 4, float > | v1, | ||
| svec< 4, float > | v2, | ||
| svec< 4, float > | v3 | ||
| ) |
| svec< 4 ,double> generic::svec_preduce_add | ( | svec< 4, double > | v0, |
| svec< 4, double > | v1, | ||
| svec< 4, double > | v2, | ||
| svec< 4, double > | v3 | ||
| ) |
| svec< 8 ,double> generic::svec_preduce_add | ( | svec< 8, double > | v0, |
| svec< 8, double > | v1, | ||
| svec< 8, double > | v2, | ||
| svec< 8, double > | v3, | ||
| svec< 8, double > | v4, | ||
| svec< 8, double > | v5, | ||
| svec< 8, double > | v6, | ||
| svec< 8, double > | v7 | ||
| ) |
| svec< 4 , bool > generic::svec_select | ( | bool | cond, |
| svec< 4, bool > | a, | ||
| svec< 4, bool > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , int8_t > generic::svec_select | ( | bool | cond, |
| svec< 4, int8_t > | a, | ||
| svec< 4, int8_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , uint8_t > generic::svec_select | ( | bool | cond, |
| svec< 4, uint8_t > | a, | ||
| svec< 4, uint8_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , int16_t > generic::svec_select | ( | bool | cond, |
| svec< 4, int16_t > | a, | ||
| svec< 4, int16_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , uint16_t > generic::svec_select | ( | bool | cond, |
| svec< 4, uint16_t > | a, | ||
| svec< 4, uint16_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , int32_t > generic::svec_select | ( | bool | cond, |
| svec< 4, int32_t > | a, | ||
| svec< 4, int32_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , uint32_t > generic::svec_select | ( | bool | cond, |
| svec< 4, uint32_t > | a, | ||
| svec< 4, uint32_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , int64_t > generic::svec_select | ( | bool | cond, |
| svec< 4, int64_t > | a, | ||
| svec< 4, int64_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , uint64_t > generic::svec_select | ( | bool | cond, |
| svec< 4, uint64_t > | a, | ||
| svec< 4, uint64_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , float > generic::svec_select | ( | bool | cond, |
| svec< 4, float > | a, | ||
| svec< 4, float > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 4 , double > generic::svec_select | ( | bool | cond, |
| svec< 4, double > | a, | ||
| svec< 4, double > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , bool > generic::svec_select | ( | bool | cond, |
| svec< 8, bool > | a, | ||
| svec< 8, bool > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , int8_t > generic::svec_select | ( | bool | cond, |
| svec< 8, int8_t > | a, | ||
| svec< 8, int8_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , uint8_t > generic::svec_select | ( | bool | cond, |
| svec< 8, uint8_t > | a, | ||
| svec< 8, uint8_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , int16_t > generic::svec_select | ( | bool | cond, |
| svec< 8, int16_t > | a, | ||
| svec< 8, int16_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , uint16_t > generic::svec_select | ( | bool | cond, |
| svec< 8, uint16_t > | a, | ||
| svec< 8, uint16_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , int32_t > generic::svec_select | ( | bool | cond, |
| svec< 8, int32_t > | a, | ||
| svec< 8, int32_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , uint32_t > generic::svec_select | ( | bool | cond, |
| svec< 8, uint32_t > | a, | ||
| svec< 8, uint32_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , int64_t > generic::svec_select | ( | bool | cond, |
| svec< 8, int64_t > | a, | ||
| svec< 8, int64_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , uint64_t > generic::svec_select | ( | bool | cond, |
| svec< 8, uint64_t > | a, | ||
| svec< 8, uint64_t > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , float > generic::svec_select | ( | bool | cond, |
| svec< 8, float > | a, | ||
| svec< 8, float > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
| svec< 8 , double > generic::svec_select | ( | bool | cond, |
| svec< 8, double > | a, | ||
| svec< 8, double > | b | ||
| ) |
Select two TYPE vectors by a bool scalar. The same as cond ? a: b.
1.8.5