__vpmsumb

用途

对相应元素的多项式乘法结果的每个偶数对执行异或运算。

原型

vector unsigned char __vpmsumb (vector unsigned char a, vector unsigned char b)

结果

For each i (0 <= i < 16), let prod[i] be the result of polynomial multiplication of byte elements i of A. and B.

For each i (0 <= i < 8), each halfword element i of the result is set as follows:
  • 位 0 设置为 0。
  • 位 1-15 设置为 prod[2*i] (xor) prod[2*i+1]