diff --git a/Intrinsics_Reference/ch_vec_reference.xml b/Intrinsics_Reference/ch_vec_reference.xml index 34418b9..bcbe989 100644 --- a/Intrinsics_Reference/ch_vec_reference.xml +++ b/Intrinsics_Reference/ch_vec_reference.xml @@ -26457,249 +26457,6 @@ 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. @@ -28466,6 +28223,54 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="VIPR.vec-ref"> r contains the estimated value of the reciprocal of the corresponding element of a. + An example for input a + of type vector double follows: + + + + + + + + + doubleword index + + + 0 + + + 1 + + + + + + + a + + + -1.00000000000000000 + + + 4.00000000000000000 + + + + + r + + + -0.99996948242187500 + + + 0.249992370605468750 + + + + + + + Endian considerations: None.