vBasicOps
Perform basic arithmetic and logical functions on 128-bit vectors.
Overview
vBasicOps.h declares a set of basic arithmetic and logical functions on 128-bit vectors, using the integer types from vecLibTypes.h.
The function names begin with “v,” followed by a mnemonic for the type of operation, e.g. “S” or “U” for signed or unsigned, then the width of the operation, then the name of the operation. For example, vS8Divide performs division of signed 8-bit values packed into 128-bit vectors.
Topics
Shift and Rotate Functions (from vBasicOps.h)
vLL128Shift(_:_:)vLR128Shift(_:_:)vLL64Shift(_:_:)vLL64Shift2(_:_:)vLR64Shift(_:_:)vLR64Shift2(_:_:)vA64Shift(_:_:)vA64Shift2(_:_:)vA128Shift(_:_:)vL64Rotate(_:_:)vR64Rotate(_:_:)vL64Rotate2(_:_:)vR64Rotate2(_:_:)vL128Rotate(_:_:)vR128Rotate(_:_:)
Integer Arithmetic Functions (from vBasicOps.h)
vU64AddS(_:_:)vS64AddS(_:_:)vU128Add(_:_:)vU128AddS(_:_:)vS128Add(_:_:)vS128AddS(_:_:)vU64SubS(_:_:)vS64SubS(_:_:)vU128Sub(_:_:)vU128SubS(_:_:)vS128Sub(_:_:)vS128SubS(_:_:)vU8HalfMultiply(_:_:)vS8HalfMultiply(_:_:)vU32HalfMultiply(_:_:)vS32HalfMultiply(_:_:)vU64HalfMultiply(_:_:)vS64HalfMultiply(_:_:)vU128HalfMultiply(_:_:)vS128HalfMultiply(_:_:)vU32FullMulEven(_:_:)vU32FullMulOdd(_:_:)vS32FullMulEven(_:_:)vS32FullMulOdd(_:_:)vU64FullMulEven(_:_:)vU64FullMulOdd(_:_:)vS64FullMulEven(_:_:)vS64FullMulOdd(_:_:)vU8Divide(_:_:_:)vS8Divide(_:_:_:)vU16Divide(_:_:_:)vS16Divide(_:_:_:)vU32Divide(_:_:_:)vS32Divide(_:_:_:)vU64Divide(_:_:_:)vS64Divide(_:_:_:)vU128Divide(_:_:_:)vS128Divide(_:_:_:)