/third_party/openssl/crypto/conf/ |
D | conf_lib.c | 71 BIO *btmp; in LHASH_OF() local 73 if ((btmp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) { in LHASH_OF() 77 ltmp = CONF_load_bio(conf, btmp, eline); in LHASH_OF() 78 BIO_free(btmp); in LHASH_OF() 149 BIO *btmp; in CONF_dump_fp() local 152 if ((btmp = BIO_new_fp(out, BIO_NOCLOSE)) == NULL) { in CONF_dump_fp() 156 ret = CONF_dump_bio(conf, btmp); in CONF_dump_fp() 157 BIO_free(btmp); in CONF_dump_fp() 220 BIO *btmp; in NCONF_load_fp() local 222 if ((btmp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) { in NCONF_load_fp() [all …]
|
D | conf_def.c | 190 char btmp[DECIMAL_SIZE(eline) + 1]; in def_load_bio() local 475 BIO_snprintf(btmp, sizeof(btmp), "%ld", eline); in def_load_bio() 476 ERR_add_error_data(2, "line ", btmp); in def_load_bio()
|
/third_party/openssl/crypto/pkcs7/ |
D | pk7_doit.c | 57 BIO *btmp; in PKCS7_bio_add_digest() local 59 if ((btmp = BIO_new(BIO_f_md())) == NULL) { in PKCS7_bio_add_digest() 70 BIO_set_md(btmp, md); in PKCS7_bio_add_digest() 72 *pbio = btmp; in PKCS7_bio_add_digest() 73 else if (!BIO_push(*pbio, btmp)) { in PKCS7_bio_add_digest() 77 btmp = NULL; in PKCS7_bio_add_digest() 82 BIO_free(btmp); in PKCS7_bio_add_digest() 199 BIO *out = NULL, *btmp = NULL; in PKCS7_dataInit() local 278 if ((btmp = BIO_new(BIO_f_cipher())) == NULL) { in PKCS7_dataInit() 282 BIO_get_cipher_ctx(btmp, &ctx); in PKCS7_dataInit() [all …]
|
/third_party/openssl/doc/man3/ |
D | BIO_find_type.pod | 47 BIO *btmp; 49 btmp = in_bio; /* in_bio is chain to search through */ 51 btmp = BIO_find_type(btmp, BIO_TYPE_MD); 52 if (btmp == NULL) 54 /* btmp is a digest BIO, do something with it ...*/ 57 btmp = BIO_next(btmp); 58 } while (btmp);
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/frag/ |
D | fp16.desktop.invalid.frag | 99 bvec4 btmp = isnan(v4); 100 btmp = isinf(v4); 120 btmp = lessThan(v4, v4); 121 btmp = lessThanEqual(v4, v4); 122 btmp = greaterThan(v4, v4); 123 btmp = greaterThanEqual(v4, v4); 124 btmp = equal(v4, v4); 125 btmp = notEqual(v4, v4);
|
/third_party/skia/third_party/externals/spirv-cross/shaders-no-opt/frag/ |
D | fp16.invalid.desktop.frag | 99 bvec4 btmp = isnan(v4); 100 btmp = isinf(v4); 120 btmp = lessThan(v4, v4); 121 btmp = lessThanEqual(v4, v4); 122 btmp = greaterThan(v4, v4); 123 btmp = greaterThanEqual(v4, v4); 124 btmp = equal(v4, v4); 125 btmp = notEqual(v4, v4);
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-no-opt/frag/ |
D | fp16.invalid.desktop.frag | 105 bvec4 btmp = isnan(v4); 106 btmp = isinf(v4); 124 btmp = lessThan(v4, v4); 125 btmp = lessThanEqual(v4, v4); 126 btmp = greaterThan(v4, v4); 127 btmp = greaterThanEqual(v4, v4); 128 btmp = equal(v4, v4); 129 btmp = not(equal(v4, v4));
|
/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl-no-opt/frag/ |
D | fp16.invalid.desktop.frag | 102 bvec4 btmp = isnan(v4); 103 btmp = isinf(v4); 123 btmp = lessThan(v4, v4); 124 btmp = lessThanEqual(v4, v4); 125 btmp = greaterThan(v4, v4); 126 btmp = greaterThanEqual(v4, v4); 127 btmp = equal(v4, v4); 128 btmp = notEqual(v4, v4);
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl-no-opt/frag/ |
D | fp16.invalid.desktop.frag | 128 bool4 btmp = isnan(v4); 129 btmp = isinf(v4); 142 btmp = bool4(v4.x < v4.x, v4.y < v4.y, v4.z < v4.z, v4.w < v4.w); 143 btmp = bool4(v4.x <= v4.x, v4.y <= v4.y, v4.z <= v4.z, v4.w <= v4.w); 144 btmp = bool4(v4.x > v4.x, v4.y > v4.y, v4.z > v4.z, v4.w > v4.w); 145 btmp = bool4(v4.x >= v4.x, v4.y >= v4.y, v4.z >= v4.z, v4.w >= v4.w); 146 btmp = bool4(v4.x == v4.x, v4.y == v4.y, v4.z == v4.z, v4.w == v4.w); 147 btmp = bool4(v4.x != v4.x, v4.y != v4.y, v4.z != v4.z, v4.w != v4.w);
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl-no-opt/frag/ |
D | fp16.desktop.invalid.frag | 131 bool4 btmp = isnan(v4); 132 btmp = isinf(v4); 150 btmp = v4 < v4; 151 btmp = v4 <= v4; 152 btmp = v4 > v4; 153 btmp = v4 >= v4; 154 btmp = v4 == v4; 155 btmp = (isunordered(v4, v4) || v4 != v4);
|
/third_party/openssl/crypto/x509v3/ |
D | v3_utl.c | 265 const char *btmp; in X509V3_get_value_bool() local 267 if ((btmp = value->value) == NULL) in X509V3_get_value_bool() 269 if (strcmp(btmp, "TRUE") == 0 in X509V3_get_value_bool() 270 || strcmp(btmp, "true") == 0 in X509V3_get_value_bool() 271 || strcmp(btmp, "Y") == 0 in X509V3_get_value_bool() 272 || strcmp(btmp, "y") == 0 in X509V3_get_value_bool() 273 || strcmp(btmp, "YES") == 0 in X509V3_get_value_bool() 274 || strcmp(btmp, "yes") == 0) { in X509V3_get_value_bool() 278 if (strcmp(btmp, "FALSE") == 0 in X509V3_get_value_bool() 279 || strcmp(btmp, "false") == 0 in X509V3_get_value_bool() [all …]
|
/third_party/openssl/crypto/asn1/ |
D | a_strex.c | 575 BIO *btmp; in X509_NAME_print_ex_fp() local 577 btmp = BIO_new_fp(fp, BIO_NOCLOSE); in X509_NAME_print_ex_fp() 578 if (!btmp) in X509_NAME_print_ex_fp() 580 ret = X509_NAME_print(btmp, nm, indent); in X509_NAME_print_ex_fp() 581 BIO_free(btmp); in X509_NAME_print_ex_fp()
|
/third_party/openssl/engines/ |
D | e_capi.c | 707 unsigned char *btmp; in capi_get_pkey() local 719 btmp = (unsigned char *)(dp + 1); in capi_get_pkey() 736 if (!lend_tobn(p, btmp, dsa_plen)) in capi_get_pkey() 738 btmp += dsa_plen; in capi_get_pkey() 739 if (!lend_tobn(q, btmp, 20)) in capi_get_pkey() 741 btmp += 20; in capi_get_pkey() 742 if (!lend_tobn(g, btmp, dsa_plen)) in capi_get_pkey() 744 btmp += dsa_plen; in capi_get_pkey() 745 if (!lend_tobn(pub_key, btmp, dsa_plen)) in capi_get_pkey() 747 btmp += dsa_plen; in capi_get_pkey()
|
/third_party/flutter/skia/third_party/externals/icu/source/tools/tzcode/ |
D | localtime.c | 173 const struct tm * btmp); 1652 register const struct tm *const btmp) in tmcomp() argument 1656 if (atmp->tm_year != btmp->tm_year) in tmcomp() 1657 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp() 1658 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp() 1659 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp() 1660 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp() 1661 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp() 1662 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()
|
/third_party/icu/icu4c/source/tools/tzcode/ |
D | localtime.c | 173 const struct tm * btmp); 1652 register const struct tm *const btmp) in tmcomp() argument 1656 if (atmp->tm_year != btmp->tm_year) in tmcomp() 1657 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp() 1658 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp() 1659 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp() 1660 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp() 1661 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp() 1662 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
D | localtime.c | 173 const struct tm * btmp); 1652 register const struct tm *const btmp) in tmcomp() argument 1656 if (atmp->tm_year != btmp->tm_year) in tmcomp() 1657 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp() 1658 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp() 1659 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp() 1660 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp() 1661 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp() 1662 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()
|
/third_party/openssl/apps/ |
D | apps.c | 416 BIO *btmp; in app_get_pass() local 427 btmp = BIO_new(BIO_f_buffer()); in app_get_pass() 428 pwdbio = BIO_push(btmp, pwdbio); in app_get_pass() 1517 BIGNUM *btmp; in rand_serial() local 1520 btmp = b == NULL ? BN_new() : b; in rand_serial() 1521 if (btmp == NULL) in rand_serial() 1524 if (!BN_rand(btmp, SERIAL_RAND_BITS, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY)) in rand_serial() 1526 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial() 1533 if (btmp != b) in rand_serial() 1534 BN_free(btmp); in rand_serial()
|
/third_party/tzdata/ |
D | localtime.c | 1864 register const struct tm *const btmp) in tmcomp() argument 1868 if (atmp->tm_year != btmp->tm_year) in tmcomp() 1869 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp() 1870 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp() 1871 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp() 1872 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp() 1873 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp() 1874 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()
|
/third_party/libdrm/nouveau/ |
D | pushbuf.c | 396 struct nouveau_bufctx *bctx, *btmp; in pushbuf_flush() local 423 DRMLISTFOREACHENTRYSAFE(bctx, btmp, &nvpb->bctx_list, head) { in pushbuf_flush()
|
/third_party/python/Modules/_decimal/libmpdec/ |
D | mpdecimal.c | 7113 MPD_NEW_STATIC(btmp,0,0,0,0); in mpd_qrem_near() 7147 if (!mpd_qcopy(&btmp, b, status)) { in mpd_qrem_near() 7151 b = &btmp; in mpd_qrem_near() 7198 mpd_del(&btmp); in mpd_qrem_near()
|