Procedure call syntax:
#include <simdmath.h> |
vector signed long long negatell2(vector signed long long x); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <negatell2.h> |
vector signed long long _negatell2(vector signed long long x); |
Parameters | |
x | input vector |
The negatell2 function returns a vector of the corresponding elements of x in which each element has its sign inverted.
The function negatell2 returns a signed long long vector in which each element is defined as the negation of the corresponding element of x.
If an element cannot be represented the corresponding result is undefined, no error is reported.
SPU only
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) negate functions.