MulManyF16
Multiplies an array of 16.16 values by another array of 16.16 values.
Synopsis
void MulManyF16( frac16 *dest, frac16 *src1, frac16 *src2,int32 count )
Description
This function multiplies an array of 16.16 fractions by another array of 16.16 fractions. Every element of the first array is multiplied by the corresponding element in the other array, and the results are deposited in the destination array.
Arguments
- dest
- A pointer to the destination array to store the results.
- src1
- Pointer to source array of 16.16 fractions to be multiplied.
- src2
- Pointer to source array of 16.16 fractions to be multiplied.
- count
- Number of vectors for the multiplication.
Implementation
SWI implemented in operamath V20.
Associated Files
operamath.h
See Also
MulScalarF16
()