Divides polynomials.
IppStatus ippsPolyGFDiv_8u(const IppsPoly_GF8u* pDividend, const IppsPoly_GF8u* pDivisor, IppsPoly_GF8u* pQuotient, IppsPoly_GF8u* pRemainder);
pDividend |
Pointer to the didvidend polynomial. |
pDivisor |
Pointer to the divisor polynomial. |
pQuotient |
Pointer to the quotient polynomial. |
pRemainder |
Pointer to the remainder polynomial. |
This function is declared in the ippdi.h file. The function performs polynomial division.
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(pQuotient) < degree(pDividend) - degree(pDivisor) and/or maxDegree(pRemainder) < degree(pDivisor), where degree is the actual degree and maxDegree is the highest possible degree specified in the respective polynomial context. |
Copyright © 2000 - 2010, Intel Corporation. All rights reserved.