diff --git a/Intrinsics_Reference/ch_vec_reference.xml b/Intrinsics_Reference/ch_vec_reference.xml index dd6d362..34418b9 100644 --- a/Intrinsics_Reference/ch_vec_reference.xml +++ b/Intrinsics_Reference/ch_vec_reference.xml @@ -26457,6 +26457,249 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="VIPR.vec-ref"> r contains the parity computed over the low-order bit of each of the bytes in the corresponding element of a. + An example for input a + of type vector unsigned int follows: + + + + + + + + + + + + + + + + + + + + + + + + + + + word index + + + 0 + + + 1 + + + 2 + + + 3 + + + + + byte index n + + + 0 + + + 1 + + + 2 + + + 3 + + + 4 + + + 5 + + + 6 + + + 7 + + + 8 + + + 9 + + + 10 + + + 11 + + + 12 + + + 13 + + + 14 + + + 15 + + + + + + + a + + + 01010203 + + + 05080D15 + + + 22375990 + + + E97962E1 + + + + + bytes of a + + + 01 + + + 01 + + + 02 + + + 03 + + + 05 + + + 08 + + + 0D + + + 15 + + + 22 + + + 37 + + + 59 + + + 90 + + + E9 + + + 79 + + + 62 + + + E1 + + + + + least-significant bit of byte n of a + + + 1 + + + 1 + + + 0 + + + 1 + + + 1 + + + 0 + + + 1 + + + 1 + + + 0 + + + 1 + + + 1 + + + 0 + + + 1 + + + 1 + + + 0 + + + 1 + + + + + r + + + 00000001 + + + 00000001 + + + 00000000 + + + 00000001 + + + + + + + Endian considerations: None.