vec_packsu: Vector Pack Saturated Unsigned
d = vec_packsu(a, b)The
value of each element of the result vector is the saturated unsigned
value of the corresponding element of the result of concatenating a and b.
| d | a | b | MIN ARCH |
|---|---|---|---|
| vector unsigned char | vector signed short | vector signed short | ARCH(11) 1 |
| vector unsigned short | vector unsigned short | ARCH(11) 1 | |
| vector unsigned short | vector signed int | vector signed int | ARCH(11) 1 |
| vector unsigned int | vector unsigned int | ARCH(11) 1 | |
| vector unsigned int | vector signed long long | vector signed long long | ARCH(11) 1 |
| vector unsigned long long | vector unsigned long long | ARCH(11) 1 | |
|
Note:
1. This prototype has the exact same semantics as that in the OpenPOWER ABI for Linux Supplement for the Power Architecture® 64-bit ELF V2 ABI, Revision 1.4.
|
|||