Home | History | Annotate | Download | only in tpm2

Lines Matching refs:pQ

1432    EC_POINT                   *pQ = NULL;
1482 || (pQ = EC_POINT_new(group)) == NULL
1486 || !EC_POINT_set_affine_coordinates_GFp(group, pQ, bnQx, bnQy, context)
1521 if(pQ != NULL) EC_POINT_free(pQ);
1629 EC_POINT *pQ;
1654 pQ = EccInitPoint2B(group, Qin, context);
1656 pAssert(EC_POINT_get_affine_coordinates_GFp(group, pQ, bnT, bnS, context));
1699 if(!EC_POINT_mul(group, pQ, bnS, pQ, bnT, context))
1702 if(!EC_POINT_get_affine_coordinates_GFp(group, pQ, bnT, NULL, context))
1715 if(pQ) EC_POINT_free(pQ);
2084 EC_POINT *pQ = NULL;
2105 pQ = EccInitPoint2B(group, QsB, context);
2107 if(PointMul(group, pQ, NULL, pQ, bnD, context) != CRYPT_NO_RESULT)
2109 Point2B(group, outZ1, pQ, size, context);
2113 PointFrom2B(group, pQ, QeB, context);
2115 if(PointMul(group, pQ, NULL, pQ, bnD, context) != CRYPT_NO_RESULT)
2117 Point2B(group, outZ2, pQ, size, context);
2118 if(pQ != NULL) EC_POINT_free(pQ);