Lines Matching refs:off
21 int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off)
31 ret = ECPKParameters_print(b, x, off);
36 int EC_KEY_print_fp(FILE *fp, const EC_KEY *x, int off)
46 ret = EC_KEY_print(b, x, off);
68 size_t len, int off);
70 int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off)
101 if (!BIO_indent(bp, off, 128))
113 if (!BIO_indent(bp, off, 128))
161 if (!BIO_indent(bp, off, 128))
175 if (!BIO_indent(bp, off, 128))
184 off))
187 if ((p != NULL) && !ASN1_bn_print(bp, "Prime:", p, NULL, off))
190 if ((a != NULL) && !ASN1_bn_print(bp, "A: ", a, NULL, off))
192 if ((b != NULL) && !ASN1_bn_print(bp, "B: ", b, NULL, off))
202 && !print_bin(bp, form_str, gen_buf, gen_buf_len, off))
205 if ((order != NULL) && !ASN1_bn_print(bp, "Order: ", order, NULL, off))
208 NULL, off))
210 if (seed && !print_bin(bp, "Seed:", seed, seed_len, off))
226 size_t len, int off)
233 if (off > 0) {
234 if (off > 128)
235 off = 128;
236 memset(str, ' ', off);
237 if (BIO_write(fp, str, off) <= 0)
240 off = 0;
249 memset(&(str[1]), ' ', off + 4);
250 if (BIO_write(fp, str, off + 1 + 4) <= 0)