|
| file | abs.h [code] |
| | abs function; returns the absolute value of a pack
|
| |
| file | acos.h [code] |
| | acos function; returns the calculation of the arccos function on all the elements of one input pack operand
|
| |
| file | add.h [code] |
| | add function; returns the result of an arithmetic add operation on all the elements of 2 input pack operandes
|
| |
| file | asin.h [code] |
| | asin function; returns the calculation of the arcsin function on all the elements of one input pack operand
|
| |
| file | atan.h [code] |
| | atan function; returns the calculation of the arctan function on all the elements of one input pack operand
|
| |
| file | atan2.h [code] |
| | atan2 function; returns the calculation of the arctan function on all the elements of one input pack operand
|
| |
| file | ceil.h [code] |
| | ceil function; returns the ceil of input value, ie. the smallest integral value not less than input value
|
| |
| file | conditionalAdd.h [code] |
| | conditionalAdd function
|
| |
| file | cos.h [code] |
| | cos function; returns the calculation of the cosine on all the elements of one input pack operand
|
| |
| file | div.h [code] |
| | div function; returns the quotient of 2 input pack operandes
|
| |
| file | exp.h [code] |
| | exp function; returns the result of exponential function on all the elements of one input pack operand
|
| |
| file | floor.h [code] |
| | floor function; returns the floor of input value, ie. the largest integral value lower than input value
|
| |
| file | fmadd.h [code] |
| | fmadd function; returns the result of a multiplication followed by an addition of all the elements of 3 input pack operandes
|
| |
| file | isEven.h [code] |
| | isEven function; sets all bits to 1 if input value is even, sets all bits to 0 otherwise
|
| |
| file | isFloatIntegral.h [code] |
| | isFloatIntegral function; sets all bits to 1 if input value is integral, sets all bits to 0 otherwise
|
| |
| file | isOdd.h [code] |
| | isOdd function; sets all bits to 1 if input value is odd, sets all bits to 0 otherwise
|
| |
| file | log.h [code] |
| | log function; returns the result of a natural logarithm on all the elements of one input pack operand
|
| |
| file | max.h [code] |
| | max function; returns the maximum of 2 packs
|
| |
| file | min.h [code] |
| | min function; returns the minimum of 2 packs
|
| |
| file | modulo.h [code] |
| | modulo function; returns the remainder of the integral division of pack A with pack B; result is in range [0; mod[
|
| |
| file | moduloCentered.h [code] |
| | centered modulo function; returns the remainder of the integral division of pack A with pack B; result is in range [-mod/2; mod/2[
|
| |
| file | mul.h [code] |
| | mul function; returns the product of 2 input pack operandes
|
| |
| file | polynomial.h [code] |
| | polynomial function; returns the result of the application of a polynomial on x
|
| |
| file | pow.h [code] |
| | pow function; pow(x, y) = exp(y.log(x))
|
| |
| file | round.h [code] |
| | round function; returns the round values of the elements of a pack
|
| |
| file | roundToEven.h [code] |
| | roundToEven function; returns the even integral value closest to input value
|
| |
| file | roundToNearestIntegral.h [code] |
| | roundToNearestIntegral function; returns the integral value closest to input value
|
| |
| file | saturated_round.h [code] |
| | saturated round function; returns the round values of the elements of a pack
|
| |
| file | sin.h [code] |
| | sin function; returns the calculation of the sine on all the elements of one input pack operand
|
| |
| file | sqrt.h [code] |
| | sqrt function; returns the square root of a pack
|
| |
| file | sub.h [code] |
| | sub function; returns the result of an arithmetic substraction on all the elements of 2 input pack operandes
|
| |
| file | tan.h [code] |
| | tan function; returns the calculation of the tan function on all the elements of one input pack operand
|
| |
| file | truncate.h [code] |
| | truncate function; returns the nearest integer not greater in magnitude than input value
|
| |
| file | unaryMinus.h [code] |
| | unaryMinus function; returns the opposite of a pack
|
| |