Multiplication operator *
The * (multiplication) operator yields the product of
its operands.
Note: This function emulates the operation on
vector
unsigned long long and vector signed long long. The
following table lists the vector data types accepted as the operands,
and the corresponding returned vector data types:
| Result types | Left operand types | Right operand types |
|---|---|---|
| vector unsigned char | vector unsigned char | vector unsigned char |
| vector signed char | vector signed char | vector signed char |
| vector unsigned short | vector unsigned short | vector unsigned short |
| vector signed short | vector signed short | vector signed short |
| vector unsigned int | vector unsigned int | vector unsigned int |
| vector signed int | vector signed int | vector signed int |
| vector unsigned long long | vector unsigned long long | vector unsigned long long |
| vector signed long long | vector signed long long | vector signed long long |
| vector float | vector float | vector float |
| vector double | vector double | vector double |