Lines Matching refs:pointP
71 ec_point_at_infinity(SECItem *pointP) in ec_point_at_infinity() argument
75 for (i = 1; i < pointP->len; i++) { in ec_point_at_infinity()
76 if (pointP->data[i] != 0x00) return PR_FALSE; in ec_point_at_infinity()
88 const SECItem *pointP, SECItem *pointQ, int kmflag) in ec_points_mul() argument
123 if (pointP != NULL) { in ec_points_mul()
124 printf("ec_points_mul: pointP [len=%d]:", pointP->len); in ec_points_mul()
125 for (i = 0; i < pointP->len; i++) in ec_points_mul()
126 printf("%02x:", pointP->data[i]); in ec_points_mul()
133 if (pointP != NULL) { in ec_points_mul()
134 if ((pointP->data[0] != EC_POINT_FORM_UNCOMPRESSED) || in ec_points_mul()
135 (pointP->len != (2 * len + 1))) { in ec_points_mul()
161 if ((k2 != NULL) && (pointP != NULL)) { in ec_points_mul()
163 CHECK_MPI_OK( mp_read_unsigned_octets(&Px, pointP->data + 1, (mp_size) len) ); in ec_points_mul()
164 CHECK_MPI_OK( mp_read_unsigned_octets(&Py, pointP->data + 1 + len, (mp_size) len) ); in ec_points_mul()
199 if ((k2 != NULL) && (pointP != NULL)) { in ec_points_mul()