Home
last modified time | relevance | path

Searched refs:bp (Results 1 - 25 of 1156) sorted by relevance

12345678910>>...47

/third_party/node/deps/openssl/openssl/ssl/
H A Dssl_txt.c32 int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) in SSL_SESSION_print() argument
41 if (BIO_puts(bp, "SSL-Session:\n") <= 0) in SSL_SESSION_print()
44 if (BIO_printf(bp, " Protocol : %s\n", s) <= 0) in SSL_SESSION_print()
49 if (BIO_printf(bp, " Cipher : %06lX\n", in SSL_SESSION_print()
53 if (BIO_printf(bp, " Cipher : %04lX\n", in SSL_SESSION_print()
58 if (BIO_printf(bp, " Cipher : %s\n", in SSL_SESSION_print()
63 if (BIO_puts(bp, " Session-ID: ") <= 0) in SSL_SESSION_print()
66 if (BIO_printf(bp, "%02X", x->session_id[i]) <= 0) in SSL_SESSION_print()
69 if (BIO_puts(bp, "\n Session-ID-ctx: ") <= 0) in SSL_SESSION_print()
72 if (BIO_printf(bp, " in SSL_SESSION_print()
167 SSL_SESSION_print_keylog(BIO *bp, const SSL_SESSION *x) SSL_SESSION_print_keylog() argument
[all...]
/third_party/openssl/ssl/
H A Dssl_txt.c32 int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) in SSL_SESSION_print() argument
41 if (BIO_puts(bp, "SSL-Session:\n") <= 0) in SSL_SESSION_print()
44 if (BIO_printf(bp, " Protocol : %s\n", s) <= 0) in SSL_SESSION_print()
49 if (BIO_printf(bp, " Cipher : %06lX\n", in SSL_SESSION_print()
53 if (BIO_printf(bp, " Cipher : %04lX\n", in SSL_SESSION_print()
58 if (BIO_printf(bp, " Cipher : %s\n", in SSL_SESSION_print()
63 if (BIO_puts(bp, " Session-ID: ") <= 0) in SSL_SESSION_print()
66 if (BIO_printf(bp, "%02X", x->session_id[i]) <= 0) in SSL_SESSION_print()
69 if (BIO_puts(bp, "\n Session-ID-ctx: ") <= 0) in SSL_SESSION_print()
72 if (BIO_printf(bp, " in SSL_SESSION_print()
167 SSL_SESSION_print_keylog(BIO *bp, const SSL_SESSION *x) SSL_SESSION_print_keylog() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dasn1_parse.c20 static int asn1_parse2(BIO *bp, const unsigned char **pp, long length,
22 static int asn1_print_info(BIO *bp, long offset, int depth, int hl, long len, in asn1_print_info() argument
45 if (bp != NULL) { in asn1_print_info()
46 if (BIO_set_prefix(bp, str) <= 0) { in asn1_print_info()
48 || (bp = BIO_push(bio, bp)) == NULL) in asn1_print_info()
52 saved_indent = BIO_get_indent(bp); in asn1_print_info()
53 if (BIO_set_prefix(bp, str) <= 0 || BIO_set_indent(bp, indent) <= 0) in asn1_print_info()
73 i = (BIO_printf(bp, " in asn1_print_info()
83 ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent) ASN1_parse() argument
88 ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump) ASN1_parse_dump() argument
94 asn1_parse2(BIO *bp, const unsigned char **pp, long length, int offset, int depth, int indent, int dump) asn1_parse2() argument
[all...]
/third_party/openssl/crypto/asn1/
H A Dasn1_parse.c20 static int asn1_parse2(BIO *bp, const unsigned char **pp, long length,
22 static int asn1_print_info(BIO *bp, long offset, int depth, int hl, long len, in asn1_print_info() argument
45 if (bp != NULL) { in asn1_print_info()
46 if (BIO_set_prefix(bp, str) <= 0) { in asn1_print_info()
48 || (bp = BIO_push(bio, bp)) == NULL) in asn1_print_info()
52 saved_indent = BIO_get_indent(bp); in asn1_print_info()
53 if (BIO_set_prefix(bp, str) <= 0 || BIO_set_indent(bp, indent) <= 0) in asn1_print_info()
73 i = (BIO_printf(bp, " in asn1_print_info()
83 ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent) ASN1_parse() argument
88 ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump) ASN1_parse_dump() argument
94 asn1_parse2(BIO *bp, const unsigned char **pp, long length, int offset, int depth, int indent, int dump) asn1_parse2() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/ocsp/
H A Docsp_prn.c17 static int ocsp_certid_print(BIO *bp, OCSP_CERTID *a, int indent) in ocsp_certid_print() argument
19 BIO_printf(bp, "%*sCertificate ID:\n", indent, ""); in ocsp_certid_print()
21 BIO_printf(bp, "%*sHash Algorithm: ", indent, ""); in ocsp_certid_print()
22 i2a_ASN1_OBJECT(bp, a->hashAlgorithm.algorithm); in ocsp_certid_print()
23 BIO_printf(bp, "\n%*sIssuer Name Hash: ", indent, ""); in ocsp_certid_print()
24 i2a_ASN1_STRING(bp, &a->issuerNameHash, 0); in ocsp_certid_print()
25 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, ""); in ocsp_certid_print()
26 i2a_ASN1_STRING(bp, &a->issuerKeyHash, 0); in ocsp_certid_print()
27 BIO_printf(bp, "\n%*sSerial Number: ", indent, ""); in ocsp_certid_print()
28 i2a_ASN1_INTEGER(bp, in ocsp_certid_print()
87 OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *o, unsigned long flags) OCSP_REQUEST_print() argument
132 OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE *o, unsigned long flags) OCSP_RESPONSE_print() argument
[all...]
/third_party/openssl/crypto/ocsp/
H A Docsp_prn.c17 static int ocsp_certid_print(BIO *bp, OCSP_CERTID *a, int indent) in ocsp_certid_print() argument
19 BIO_printf(bp, "%*sCertificate ID:\n", indent, ""); in ocsp_certid_print()
21 BIO_printf(bp, "%*sHash Algorithm: ", indent, ""); in ocsp_certid_print()
22 i2a_ASN1_OBJECT(bp, a->hashAlgorithm.algorithm); in ocsp_certid_print()
23 BIO_printf(bp, "\n%*sIssuer Name Hash: ", indent, ""); in ocsp_certid_print()
24 i2a_ASN1_STRING(bp, &a->issuerNameHash, 0); in ocsp_certid_print()
25 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, ""); in ocsp_certid_print()
26 i2a_ASN1_STRING(bp, &a->issuerKeyHash, 0); in ocsp_certid_print()
27 BIO_printf(bp, "\n%*sSerial Number: ", indent, ""); in ocsp_certid_print()
28 i2a_ASN1_INTEGER(bp, in ocsp_certid_print()
87 OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *o, unsigned long flags) OCSP_REQUEST_print() argument
132 OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE *o, unsigned long flags) OCSP_RESPONSE_print() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_nist.c397 const unsigned int *bp = (const unsigned int *)buf.ui; in BN_nist_mod_192() local
400 acc += bp[3 * 2 - 6]; in BN_nist_mod_192()
401 acc += bp[5 * 2 - 6]; in BN_nist_mod_192()
406 acc += bp[3 * 2 - 5]; in BN_nist_mod_192()
407 acc += bp[5 * 2 - 5]; in BN_nist_mod_192()
412 acc += bp[3 * 2 - 6]; in BN_nist_mod_192()
413 acc += bp[4 * 2 - 6]; in BN_nist_mod_192()
414 acc += bp[5 * 2 - 6]; in BN_nist_mod_192()
419 acc += bp[3 * 2 - 5]; in BN_nist_mod_192()
420 acc += bp[ in BN_nist_mod_192()
544 const unsigned int *bp = (const unsigned int *)buf.ui; BN_nist_mod_224() local
706 const unsigned int *bp = (const unsigned int *)buf.ui; BN_nist_mod_256() local
943 const unsigned int *bp = (const unsigned int *)buf.ui; BN_nist_mod_384() local
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_nist.c375 const unsigned int *bp = (const unsigned int *)buf.ui; in BN_nist_mod_192() local
378 acc += bp[3 * 2 - 6]; in BN_nist_mod_192()
379 acc += bp[5 * 2 - 6]; in BN_nist_mod_192()
384 acc += bp[3 * 2 - 5]; in BN_nist_mod_192()
385 acc += bp[5 * 2 - 5]; in BN_nist_mod_192()
390 acc += bp[3 * 2 - 6]; in BN_nist_mod_192()
391 acc += bp[4 * 2 - 6]; in BN_nist_mod_192()
392 acc += bp[5 * 2 - 6]; in BN_nist_mod_192()
397 acc += bp[3 * 2 - 5]; in BN_nist_mod_192()
398 acc += bp[ in BN_nist_mod_192()
522 const unsigned int *bp = (const unsigned int *)buf.ui; BN_nist_mod_224() local
684 const unsigned int *bp = (const unsigned int *)buf.ui; BN_nist_mod_256() local
921 const unsigned int *bp = (const unsigned int *)buf.ui; BN_nist_mod_384() local
[all...]
/third_party/ffmpeg/libavutil/tests/
H A Dchannel_layout.c24 av_bprint_clear(&bp); \
25 av_channel_name_bprint(&bp, x);
28 av_bprint_clear(&bp); \
29 av_channel_description_bprint(&bp, x);
33 av_bprint_clear(&bp); \
36 av_channel_layout_describe_bprint(&layout, &bp); \
38 av_bprintf(&bp, "fail");
42 av_bprint_clear(&bp); \
45 av_channel_layout_describe_bprint(&layout, &bp); \
47 av_bprintf(&bp, "fai
76 AVBPrint bp; main() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dt_req.c37 int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, in X509_REQ_print_ex() argument
56 if (BIO_write(bp, "Certificate Request:\n", 21) <= 0) in X509_REQ_print_ex()
58 if (BIO_write(bp, " Data:\n", 10) <= 0) in X509_REQ_print_ex()
64 if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, (unsigned long)l) <= 0) in X509_REQ_print_ex()
67 if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0) in X509_REQ_print_ex()
72 if (BIO_printf(bp, " Subject:%c", mlch) <= 0) in X509_REQ_print_ex()
74 if (X509_NAME_print_ex(bp, X509_REQ_get_subject_name(x), in X509_REQ_print_ex()
77 if (BIO_write(bp, "\n", 1) <= 0) in X509_REQ_print_ex()
83 if (BIO_write(bp, " Subject Public Key Info:\n", 33) <= 0) in X509_REQ_print_ex()
85 if (BIO_printf(bp, " in X509_REQ_print_ex()
211 X509_REQ_print(BIO *bp, X509_REQ *x) X509_REQ_print() argument
[all...]
H A Dt_x509.c43 int X509_print(BIO *bp, X509 *x) in X509_print() argument
45 return X509_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT); in X509_print()
48 int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags, in X509_print_ex() argument
67 if (BIO_write(bp, "Certificate:\n", 13) <= 0) in X509_print_ex()
69 if (BIO_write(bp, " Data:\n", 10) <= 0) in X509_print_ex()
75 if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, (unsigned long)l) <= 0) in X509_print_ex()
78 if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0) in X509_print_ex()
85 if (BIO_write(bp, " Serial Number:", 22) <= 0) in X509_print_ex()
104 if (BIO_printf(bp, " %s%lu (%s0x%lx)\n", neg, ul, neg, ul) <= 0) in X509_print_ex()
108 if (BIO_printf(bp, "\ in X509_print_ex()
222 X509_ocspid_print(BIO *bp, X509 *x) X509_ocspid_print() argument
288 X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent) X509_signature_dump() argument
311 X509_signature_print(BIO *bp, const X509_ALGOR *sigalg, const ASN1_STRING *sig) X509_signature_print() argument
[all...]
H A Dv3_admis.c54 BIO *bp, int ind);
72 BIO *bp, int ind) in i2r_NAMING_AUTHORITY()
84 if (BIO_printf(bp, "%*snamingAuthority: ", ind, "") <= 0) in i2r_NAMING_AUTHORITY()
91 if (BIO_printf(bp, "%*s admissionAuthorityId: ", ind, "") <= 0) in i2r_NAMING_AUTHORITY()
96 if (BIO_printf(bp, "%s%s%s%s\n", ln ? ln : "", in i2r_NAMING_AUTHORITY()
101 if (BIO_printf(bp, "%*s namingAuthorityText: ", ind, "") <= 0 in i2r_NAMING_AUTHORITY()
102 || ASN1_STRING_print(bp, namingAuthority->namingAuthorityText) <= 0 in i2r_NAMING_AUTHORITY()
103 || BIO_printf(bp, "\n") <= 0) in i2r_NAMING_AUTHORITY()
107 if (BIO_printf(bp, "%*s namingAuthorityUrl: ", ind, "") <= 0 in i2r_NAMING_AUTHORITY()
108 || ASN1_STRING_print(bp, namingAuthorit in i2r_NAMING_AUTHORITY()
71 i2r_NAMING_AUTHORITY(const struct v3_ext_method *method, void *in, BIO *bp, int ind) i2r_NAMING_AUTHORITY() argument
118 i2r_ADMISSION_SYNTAX(const struct v3_ext_method *method, void *in, BIO *bp, int ind) i2r_ADMISSION_SYNTAX() argument
[all...]
H A Dx_all.c185 X509 *d2i_X509_bio(BIO *bp, X509 **x509) in d2i_X509_bio() argument
187 return ASN1_item_d2i_bio(ASN1_ITEM_rptr(X509), bp, x509); in d2i_X509_bio()
190 int i2d_X509_bio(BIO *bp, const X509 *x509) in i2d_X509_bio() argument
192 return ASN1_item_i2d_bio(ASN1_ITEM_rptr(X509), bp, x509); in i2d_X509_bio()
207 X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **crl) in d2i_X509_CRL_bio() argument
209 return ASN1_item_d2i_bio(ASN1_ITEM_rptr(X509_CRL), bp, crl); in d2i_X509_CRL_bio()
212 int i2d_X509_CRL_bio(BIO *bp, const X509_CRL *crl) in i2d_X509_CRL_bio() argument
214 return ASN1_item_i2d_bio(ASN1_ITEM_rptr(X509_CRL), bp, crl); in i2d_X509_CRL_bio()
241 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7) in d2i_PKCS7_bio() argument
252 ret = ASN1_item_d2i_bio_ex(ASN1_ITEM_rptr(PKCS7), bp, p in d2i_PKCS7_bio()
258 i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7) i2d_PKCS7_bio() argument
275 d2i_X509_REQ_bio(BIO *bp, X509_REQ **req) d2i_X509_REQ_bio() argument
288 i2d_X509_REQ_bio(BIO *bp, const X509_REQ *req) i2d_X509_REQ_bio() argument
327 d2i_RSAPrivateKey_bio(BIO *bp, RSA **rsa) d2i_RSAPrivateKey_bio() argument
332 i2d_RSAPrivateKey_bio(BIO *bp, const RSA *rsa) i2d_RSAPrivateKey_bio() argument
337 d2i_RSAPublicKey_bio(BIO *bp, RSA **rsa) d2i_RSAPublicKey_bio() argument
342 d2i_RSA_PUBKEY_bio(BIO *bp, RSA **rsa) d2i_RSA_PUBKEY_bio() argument
347 i2d_RSAPublicKey_bio(BIO *bp, const RSA *rsa) i2d_RSAPublicKey_bio() argument
352 i2d_RSA_PUBKEY_bio(BIO *bp, const RSA *rsa) i2d_RSA_PUBKEY_bio() argument
380 d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa) d2i_DSAPrivateKey_bio() argument
385 i2d_DSAPrivateKey_bio(BIO *bp, const DSA *dsa) i2d_DSAPrivateKey_bio() argument
390 d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa) d2i_DSA_PUBKEY_bio() argument
395 i2d_DSA_PUBKEY_bio(BIO *bp, const DSA *dsa) i2d_DSA_PUBKEY_bio() argument
424 d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey) d2i_EC_PUBKEY_bio() argument
429 i2d_EC_PUBKEY_bio(BIO *bp, const EC_KEY *ecdsa) i2d_EC_PUBKEY_bio() argument
434 d2i_ECPrivateKey_bio(BIO *bp, EC_KEY **eckey) d2i_ECPrivateKey_bio() argument
439 i2d_ECPrivateKey_bio(BIO *bp, const EC_KEY *eckey) i2d_ECPrivateKey_bio() argument
616 d2i_PKCS8_bio(BIO *bp, X509_SIG **p8) d2i_PKCS8_bio() argument
621 i2d_PKCS8_bio(BIO *bp, const X509_SIG *p8) i2d_PKCS8_bio() argument
639 d2i_X509_PUBKEY_bio(BIO *bp, X509_PUBKEY **xpk) d2i_X509_PUBKEY_bio() argument
645 i2d_X509_PUBKEY_bio(BIO *bp, const X509_PUBKEY *xpk) i2d_X509_PUBKEY_bio() argument
715 d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, PKCS8_PRIV_KEY_INFO **p8inf) d2i_PKCS8_PRIV_KEY_INFO_bio() argument
722 i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, const PKCS8_PRIV_KEY_INFO *p8inf) i2d_PKCS8_PRIV_KEY_INFO_bio() argument
728 i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, const EVP_PKEY *key) i2d_PKCS8PrivateKeyInfo_bio() argument
741 i2d_PrivateKey_bio(BIO *bp, const EVP_PKEY *pkey) i2d_PrivateKey_bio() argument
746 d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a) d2i_PrivateKey_bio() argument
751 d2i_PrivateKey_ex_bio(BIO *bp, EVP_PKEY **a, OSSL_LIB_CTX *libctx, const char *propq) d2i_PrivateKey_ex_bio() argument
770 i2d_PUBKEY_bio(BIO *bp, const EVP_PKEY *pkey) i2d_PUBKEY_bio() argument
775 d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a) d2i_PUBKEY_bio() argument
[all...]
/third_party/openssl/crypto/x509/
H A Dt_req.c37 int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, in X509_REQ_print_ex() argument
56 if (BIO_write(bp, "Certificate Request:\n", 21) <= 0) in X509_REQ_print_ex()
58 if (BIO_write(bp, " Data:\n", 10) <= 0) in X509_REQ_print_ex()
64 if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, (unsigned long)l) <= 0) in X509_REQ_print_ex()
67 if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0) in X509_REQ_print_ex()
72 if (BIO_printf(bp, " Subject:%c", mlch) <= 0) in X509_REQ_print_ex()
74 if (X509_NAME_print_ex(bp, X509_REQ_get_subject_name(x), in X509_REQ_print_ex()
77 if (BIO_write(bp, "\n", 1) <= 0) in X509_REQ_print_ex()
83 if (BIO_write(bp, " Subject Public Key Info:\n", 33) <= 0) in X509_REQ_print_ex()
85 if (BIO_printf(bp, " in X509_REQ_print_ex()
211 X509_REQ_print(BIO *bp, X509_REQ *x) X509_REQ_print() argument
[all...]
H A Dt_x509.c43 int X509_print(BIO *bp, X509 *x) in X509_print() argument
45 return X509_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT); in X509_print()
48 int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags, in X509_print_ex() argument
69 if (BIO_write(bp, "Certificate:\n", 13) <= 0) in X509_print_ex()
71 if (BIO_write(bp, " Data:\n", 10) <= 0) in X509_print_ex()
77 if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, (unsigned long)l) <= 0) in X509_print_ex()
80 if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0) in X509_print_ex()
87 if (BIO_write(bp, " Serial Number:", 22) <= 0) in X509_print_ex()
106 if (BIO_printf(bp, " %s%lu (%s0x%lx)\n", neg, ul, neg, ul) <= 0) in X509_print_ex()
110 if (BIO_printf(bp, "\ in X509_print_ex()
224 X509_ocspid_print(BIO *bp, X509 *x) X509_ocspid_print() argument
290 X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent) X509_signature_dump() argument
313 X509_signature_print(BIO *bp, const X509_ALGOR *sigalg, const ASN1_STRING *sig) X509_signature_print() argument
[all...]
H A Dv3_admis.c54 BIO *bp, int ind);
72 BIO *bp, int ind) in i2r_NAMING_AUTHORITY()
84 if (BIO_printf(bp, "%*snamingAuthority: ", ind, "") <= 0) in i2r_NAMING_AUTHORITY()
91 if (BIO_printf(bp, "%*s admissionAuthorityId: ", ind, "") <= 0) in i2r_NAMING_AUTHORITY()
96 if (BIO_printf(bp, "%s%s%s%s\n", ln ? ln : "", in i2r_NAMING_AUTHORITY()
101 if (BIO_printf(bp, "%*s namingAuthorityText: ", ind, "") <= 0 in i2r_NAMING_AUTHORITY()
102 || ASN1_STRING_print(bp, namingAuthority->namingAuthorityText) <= 0 in i2r_NAMING_AUTHORITY()
103 || BIO_printf(bp, "\n") <= 0) in i2r_NAMING_AUTHORITY()
107 if (BIO_printf(bp, "%*s namingAuthorityUrl: ", ind, "") <= 0 in i2r_NAMING_AUTHORITY()
108 || ASN1_STRING_print(bp, namingAuthorit in i2r_NAMING_AUTHORITY()
71 i2r_NAMING_AUTHORITY(const struct v3_ext_method *method, void *in, BIO *bp, int ind) i2r_NAMING_AUTHORITY() argument
118 i2r_ADMISSION_SYNTAX(const struct v3_ext_method *method, void *in, BIO *bp, int ind) i2r_ADMISSION_SYNTAX() argument
[all...]
H A Dx_all.c185 X509 *d2i_X509_bio(BIO *bp, X509 **x509) in d2i_X509_bio() argument
187 return ASN1_item_d2i_bio(ASN1_ITEM_rptr(X509), bp, x509); in d2i_X509_bio()
190 int i2d_X509_bio(BIO *bp, const X509 *x509) in i2d_X509_bio() argument
192 return ASN1_item_i2d_bio(ASN1_ITEM_rptr(X509), bp, x509); in i2d_X509_bio()
207 X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **crl) in d2i_X509_CRL_bio() argument
209 return ASN1_item_d2i_bio(ASN1_ITEM_rptr(X509_CRL), bp, crl); in d2i_X509_CRL_bio()
212 int i2d_X509_CRL_bio(BIO *bp, const X509_CRL *crl) in i2d_X509_CRL_bio() argument
214 return ASN1_item_i2d_bio(ASN1_ITEM_rptr(X509_CRL), bp, crl); in i2d_X509_CRL_bio()
241 PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7) in d2i_PKCS7_bio() argument
252 ret = ASN1_item_d2i_bio_ex(ASN1_ITEM_rptr(PKCS7), bp, p in d2i_PKCS7_bio()
258 i2d_PKCS7_bio(BIO *bp, const PKCS7 *p7) i2d_PKCS7_bio() argument
275 d2i_X509_REQ_bio(BIO *bp, X509_REQ **req) d2i_X509_REQ_bio() argument
288 i2d_X509_REQ_bio(BIO *bp, const X509_REQ *req) i2d_X509_REQ_bio() argument
327 d2i_RSAPrivateKey_bio(BIO *bp, RSA **rsa) d2i_RSAPrivateKey_bio() argument
332 i2d_RSAPrivateKey_bio(BIO *bp, const RSA *rsa) i2d_RSAPrivateKey_bio() argument
337 d2i_RSAPublicKey_bio(BIO *bp, RSA **rsa) d2i_RSAPublicKey_bio() argument
342 d2i_RSA_PUBKEY_bio(BIO *bp, RSA **rsa) d2i_RSA_PUBKEY_bio() argument
347 i2d_RSAPublicKey_bio(BIO *bp, const RSA *rsa) i2d_RSAPublicKey_bio() argument
352 i2d_RSA_PUBKEY_bio(BIO *bp, const RSA *rsa) i2d_RSA_PUBKEY_bio() argument
380 d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa) d2i_DSAPrivateKey_bio() argument
385 i2d_DSAPrivateKey_bio(BIO *bp, const DSA *dsa) i2d_DSAPrivateKey_bio() argument
390 d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa) d2i_DSA_PUBKEY_bio() argument
395 i2d_DSA_PUBKEY_bio(BIO *bp, const DSA *dsa) i2d_DSA_PUBKEY_bio() argument
424 d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey) d2i_EC_PUBKEY_bio() argument
429 i2d_EC_PUBKEY_bio(BIO *bp, const EC_KEY *ecdsa) i2d_EC_PUBKEY_bio() argument
434 d2i_ECPrivateKey_bio(BIO *bp, EC_KEY **eckey) d2i_ECPrivateKey_bio() argument
439 i2d_ECPrivateKey_bio(BIO *bp, const EC_KEY *eckey) i2d_ECPrivateKey_bio() argument
616 d2i_PKCS8_bio(BIO *bp, X509_SIG **p8) d2i_PKCS8_bio() argument
621 i2d_PKCS8_bio(BIO *bp, const X509_SIG *p8) i2d_PKCS8_bio() argument
639 d2i_X509_PUBKEY_bio(BIO *bp, X509_PUBKEY **xpk) d2i_X509_PUBKEY_bio() argument
645 i2d_X509_PUBKEY_bio(BIO *bp, const X509_PUBKEY *xpk) i2d_X509_PUBKEY_bio() argument
715 d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, PKCS8_PRIV_KEY_INFO **p8inf) d2i_PKCS8_PRIV_KEY_INFO_bio() argument
722 i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, const PKCS8_PRIV_KEY_INFO *p8inf) i2d_PKCS8_PRIV_KEY_INFO_bio() argument
728 i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, const EVP_PKEY *key) i2d_PKCS8PrivateKeyInfo_bio() argument
741 i2d_PrivateKey_bio(BIO *bp, const EVP_PKEY *pkey) i2d_PrivateKey_bio() argument
746 d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a) d2i_PrivateKey_bio() argument
751 d2i_PrivateKey_ex_bio(BIO *bp, EVP_PKEY **a, OSSL_LIB_CTX *libctx, const char *propq) d2i_PrivateKey_ex_bio() argument
770 i2d_PUBKEY_bio(BIO *bp, const EVP_PKEY *pkey) i2d_PUBKEY_bio() argument
775 d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a) d2i_PUBKEY_bio() argument
[all...]
/third_party/libwebsockets/lib/misc/fts/
H A Dtrie.c171 if (bp && ((uint32_t)bp >= (sizeof(buf) - (size_t)(margin)) || (force))) { \
172 if ((int)write(t->fd, buf, (size_t)bp) != bp) { \
174 bp, errno); \
177 t->c += (unsigned int)bp; \
178 bp = 0; \
401 int bp = 0; in finalize_per_input() local
403 bp += g16(&buf[bp], in finalize_per_input()
550 int bp = 0, sline, chars, m; lws_fts_fill() local
1103 int n, bp, sp = 0, do_parent; lws_fts_serialize() local
[all...]
H A Dtrie-fd.c90 int ra, bp = 0; in lws_fts_filepath() local
120 bp += rq32(&buf[bp], ofs_linetable); in lws_fts_filepath()
122 bp += rq32(&buf[bp], &flen); in lws_fts_filepath()
124 bp += rq32(&buf[bp], lines); in lws_fts_filepath()
126 bp += rq32(&buf[bp], &flen); in lws_fts_filepath()
127 bp in lws_fts_filepath()
244 int line = 1, bp, ra; lws_fts_cache_chunktable() local
291 int bp, ra; lws_fts_getfileoffset() local
395 int pos = 0, n, m, nl, bp, base = 0, ra, palm, budget, sp, ofd = -1; lws_fts_search() local
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_format.cc247 if (const char* const bp = dp) { in ParseInt()
264 if (dp != bp && !erange && (neg || value != kmin)) { in ParseInt()
343 char* bp; // works back from ep in format() local
393 bp = Format64(ep, 0, al.cs.year()); in format()
394 result.append(bp, static_cast<std::size_t>(ep - bp)); in format()
397 bp = Format02d(ep, al.cs.month()); in format()
398 result.append(bp, static_cast<std::size_t>(ep - bp)); in format()
402 bp in format()
593 const char* bp = ParseInt(ap, 2, 0, 59, &minutes); ParseOffset() local
627 const char* const bp = dp; ParseSubSeconds() local
866 const char* bp = data; parse() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmqcenc.c36 if (*mqc->bp == 0xff){ in byteout()
37 mqc->bp++; in byteout()
38 *mqc->bp = mqc->c >> 20; in byteout()
42 (*mqc->bp)++; in byteout()
46 mqc->bp++; in byteout()
47 *mqc->bp = mqc->c >> 19; in byteout()
71 void ff_mqc_initenc(MqcState *mqc, uint8_t *bp) in ff_mqc_initenc() argument
76 mqc->bp = bp-1; in ff_mqc_initenc()
77 mqc->bpstart = bp; in ff_mqc_initenc()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_nl80211_android.c81 int ret = 0, i = 0, bp; in android_pno_start() local
84 bp = WEXT_PNOSETUP_HEADER_SIZE; in android_pno_start()
85 os_memcpy(buf, WEXT_PNOSETUP_HEADER, bp); in android_pno_start()
86 buf[bp++] = WEXT_PNO_TLV_PREFIX; in android_pno_start()
87 buf[bp++] = WEXT_PNO_TLV_VERSION; in android_pno_start()
88 buf[bp++] = WEXT_PNO_TLV_SUBVERSION; in android_pno_start()
89 buf[bp++] = WEXT_PNO_TLV_RESERVED; in android_pno_start()
94 if ((bp + WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN + in android_pno_start()
100 buf[bp++] = WEXT_PNO_SSID_SECTION; in android_pno_start()
101 buf[bp in android_pno_start()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver_nl80211_android.c81 int ret = 0, i = 0, bp; in android_pno_start() local
84 bp = WEXT_PNOSETUP_HEADER_SIZE; in android_pno_start()
85 os_memcpy(buf, WEXT_PNOSETUP_HEADER, bp); in android_pno_start()
86 buf[bp++] = WEXT_PNO_TLV_PREFIX; in android_pno_start()
87 buf[bp++] = WEXT_PNO_TLV_VERSION; in android_pno_start()
88 buf[bp++] = WEXT_PNO_TLV_SUBVERSION; in android_pno_start()
89 buf[bp++] = WEXT_PNO_TLV_RESERVED; in android_pno_start()
94 if ((bp + WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN + in android_pno_start()
100 buf[bp++] = WEXT_PNO_SSID_SECTION; in android_pno_start()
101 buf[bp in android_pno_start()
[all...]
/third_party/mesa3d/src/glx/
H A Dglxext.c413 const INT32 * bp, Bool tagged_only, in __glXInitializeVisualConfigFromTags()
420 config->visualID = *bp++; in __glXInitializeVisualConfigFromTags()
422 config->visualType = convert_from_x_visual_type(*bp++); in __glXInitializeVisualConfigFromTags()
424 config->renderType = *bp++ ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT; in __glXInitializeVisualConfigFromTags()
426 config->redBits = *bp++; in __glXInitializeVisualConfigFromTags()
427 config->greenBits = *bp++; in __glXInitializeVisualConfigFromTags()
428 config->blueBits = *bp++; in __glXInitializeVisualConfigFromTags()
429 config->alphaBits = *bp++; in __glXInitializeVisualConfigFromTags()
430 config->accumRedBits = *bp++; in __glXInitializeVisualConfigFromTags()
431 config->accumGreenBits = *bp in __glXInitializeVisualConfigFromTags()
412 __glXInitializeVisualConfigFromTags(struct glx_config * config, int count, const INT32 * bp, Bool tagged_only, Bool fbconfig_style_tags) __glXInitializeVisualConfigFromTags() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/lhash/
H A Dlh_stats.c26 BIO *bp; in OPENSSL_LH_stats() local
28 bp = BIO_new(BIO_s_file()); in OPENSSL_LH_stats()
29 if (bp == NULL) in OPENSSL_LH_stats()
31 BIO_set_fp(bp, fp, BIO_NOCLOSE); in OPENSSL_LH_stats()
32 OPENSSL_LH_stats_bio(lh, bp); in OPENSSL_LH_stats()
33 BIO_free(bp); in OPENSSL_LH_stats()
38 BIO *bp; in OPENSSL_LH_node_stats() local
40 bp = BIO_new(BIO_s_file()); in OPENSSL_LH_node_stats()
41 if (bp == NULL) in OPENSSL_LH_node_stats()
43 BIO_set_fp(bp, f in OPENSSL_LH_node_stats()
50 BIO *bp; OPENSSL_LH_node_usage_stats() local
[all...]

Completed in 16 milliseconds

12345678910>>...47