Lines Matching refs:pnt
4252 EC_POINT *pnt = NULL; in PHP_FUNCTION() local
4296 pnt = EC_POINT_new(group); in PHP_FUNCTION()
4297 if (!pnt || !EC_POINT_mul(group, pnt, d, NULL, NULL, NULL)) { in PHP_FUNCTION()
4307 pnt = EC_POINT_new(group); in PHP_FUNCTION()
4308 if (pnt == NULL) { in PHP_FUNCTION()
4313 group, pnt, BN_bin2bn((unsigned char*) Z_STRVAL_P(x), Z_STRLEN_P(x), NULL), in PHP_FUNCTION()
4320 if (pnt != NULL) { in PHP_FUNCTION()
4321 if (!EC_KEY_set_public_key(eckey, pnt)) { in PHP_FUNCTION()
4325 EC_POINT_free(pnt); in PHP_FUNCTION()
4326 pnt = NULL; in PHP_FUNCTION()
4354 if (pnt != NULL) { in PHP_FUNCTION()
4355 EC_POINT_free(pnt); in PHP_FUNCTION()