|
| vbool8 () |
| Default constructor (contents undefined) More...
|
|
| vbool8 (bool a) |
| Construct from a single value (store it in all slots) More...
|
|
| vbool8 (const bool *values) |
|
| vbool8 (bool a, bool b, bool c, bool d, bool e, bool f, bool g, bool h) |
| Construct from 8 bool values. More...
|
|
| vbool8 (const vbool8 &other) |
| Copy construct from another vbool8. More...
|
|
| vbool8 (int a, int b, int c, int d, int e, int f, int g, int h) |
| Construct from 8 int values. More...
|
|
| vbool8 (const vint8 &i) |
| Construct from a SIMD int (is each element nonzero?) More...
|
|
| vbool8 (const vbool4 &lo, const vbool4 &hi) |
| Construct from two vbool4's. More...
|
|
| vbool8 (const simd_t &m) |
| Construct from the underlying SIMD type. More...
|
|
| operator simd_t () const |
| Return the raw SIMD type. More...
|
|
simd_t | simd () const |
|
simd_t & | simd () |
|
int | bitmask () const |
| Extract the bitmask. More...
|
|
void | clear () |
| Set all components to false. More...
|
|
const vbool8 & | operator= (bool a) |
| Assign one value to all components. More...
|
|
const vbool8 & | operator= (const vbool8 &other) |
| Assignment of another vbool8. More...
|
|
int | operator[] (int i) const |
| Component access (get) More...
|
|
void | setcomp (int i, bool value) |
| Component access (set). More...
|
|
int & | operator[] (int i) |
|
vbool4 | lo () const |
| Extract the lower precision vbool4. More...
|
|
vbool4 | hi () const |
| Extract the higher precision vbool4. More...
|
|
void | load (bool a) |
| Helper: load a single value into all components. More...
|
|
void | load (bool a, bool b, bool c, bool d, bool e, bool f, bool g, bool h) |
| Helper: load separate values into each component. More...
|
|
void | store (bool *values) const |
| Helper: store the values into memory as bools. More...
|
|
void | store (bool *values, int n) const |
| Store the first n values into memory. More...
|
|
|
vbool8 | operator! (const vbool8 &a) |
| Logical/bitwise operators, component-by-component. More...
|
|
vbool8 | operator& (const vbool8 &a, const vbool8 &b) |
|
vbool8 | operator| (const vbool8 &a, const vbool8 &b) |
|
vbool8 | operator^ (const vbool8 &a, const vbool8 &b) |
|
vbool8 | operator~ (const vbool8 &a) |
|
const vbool8 & | operator&= (vbool8 &a, const vbool8 &b) |
|
const vbool8 & | operator|= (vbool8 &a, const vbool8 &b) |
|
const vbool8 & | operator^= (vbool8 &a, const vbool8 &b) |
|
vbool8 | operator== (const vbool8 &a, const vbool8 &b) |
| Comparison operators, component by component. More...
|
|
vbool8 | operator!= (const vbool8 &a, const vbool8 &b) |
|
std::ostream & | operator<< (std::ostream &cout, const vbool8 &a) |
| Stream output. More...
|
|
vbool8: An 8-vector whose elements act mostly like bools, accelerated by SIMD instructions when available. This is what is naturally produced by SIMD comparison operators on the vfloat8 and vint8 types.
Definition at line 598 of file simd.h.