Lines Matching refs:pGFp
64 // ippStsNullPtrErr pGFp == NULL
68 // ippStsContextMatchErr invalid pGFp->idCtx
71 // ippStsSizeErr pA && !(0<=lenA && lenA<GFP_FELEN32(GFP_PMA(pGFp)))
73 // ippStsOutOfRangeErr GFPE_ROOM(pR)!=GFP_FELEN(GFP_PMA(pGFp)
82 // pGFp Pointer to the context of the finite field.
86 IPPFUN(IppStatus, ippsGFpElementInit,(const Ipp32u* pA, int lenA, IppsGFpElement* pR, IppsGFpState* pGFp))
88 IPP_BAD_PTR2_RET(pR, pGFp);
89 pGFp = (IppsGFpState*)( IPP_ALIGNED_PTR(pGFp, GFP_ALIGNMENT) );
90 IPP_BADARG_RET( !GFP_TEST_ID(pGFp), ippStsContextMatchErr );
95 int elemLen = GFP_FELEN(GFP_PMA(pGFp));
100 return ippsGFpSetElement(pA, lenA, pR, pGFp);