Multiplies polynomials.
IppStatus ippsPolyGFMul_8u(const IppsPoly_GF8u* pSrcA, const IppsPoly_GF8u* pSrcB, IppsPoly_GF8u* pDstR);
pSrcA |
Pointer to the first (multiplicand) polynomial. |
pSrcB |
Pointer to the second (multiplier) polynomial. |
pDstR |
Pointer to the resultant polynomial. |
This function is declared in the ippdi.h file. The function performs polynomial multiplication.
ippStsNoErr |
Indicates no error. Any other value indicates an error or warning. |
ippStsNullPtrErr |
Indicates an error condition if any of the specified pointers is NULL. |
ippStsContextMatchErr |
Indicates an error condition if any of the specified contexts is not valid. |
ippStsOutOfRangeErr |
Indicates an error condition if maxDegree (pDstR) < degree( pSrcA) + degree(pSrcB), where maxDegree is the highest possible degree specified in the respective polynomial context. |
Copyright © 2000 - 2010, Intel Corporation. All rights reserved.