1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
.. Copyright (c) 2016, Johan Mabille, Sylvain Corlay
Distributed under the terms of the BSD 3-Clause License.
The full license is in the file LICENSE, distributed with this software.
.. raw:: html
<style>
.rst-content table.docutils {
width: 100%;
table-layout: fixed;
}
table.docutils .line-block {
margin-left: 0;
margin-bottom: 0;
}
table.docutils code.literal {
color: initial;
}
code.docutils {
background: initial;
}
</style>
Bitwise operators
=================
+---------------------------------------+----------------------------------------------------+
| :cpp:func:`bitwise_not` | per slot bitwise not |
+---------------------------------------+----------------------------------------------------+
| :cpp:func:`bitwise_or` | per slot bitwise or |
+---------------------------------------+----------------------------------------------------+
| :cpp:func:`bitwise_xor` | per slot bitwise xor |
+---------------------------------------+----------------------------------------------------+
| :cpp:func:`bitwise_and` | per slot bitwise and |
+---------------------------------------+----------------------------------------------------+
| :cpp:func:`bitwise_andnot` | per slot bitwise and not |
+---------------------------------------+----------------------------------------------------+
| :cpp:func:`bitwise_lshift` | per slot bitwise and |
+---------------------------------------+----------------------------------------------------+
| :cpp:func:`bitwise_rshift` | per slot bitwise and not |
+---------------------------------------+----------------------------------------------------+
| :cpp:func:`rotr` | per slot rotate right |
+---------------------------------------+----------------------------------------------------+
| :cpp:func:`rotl` | per slot rotate left |
+---------------------------------------+----------------------------------------------------+
----
.. doxygengroup:: batch_bitwise
:project: xsimd
:content-only:
|