/external/arm-trusted-firmware/tools/cert_create/src/ |
D | cert.c | 29 BIGNUM *btmp; in rand_serial() local 32 btmp = b; in rand_serial() 34 btmp = BN_new(); in rand_serial() 36 if (!btmp) in rand_serial() 39 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0)) in rand_serial() 41 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial() 49 BN_free(btmp); in rand_serial()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509v3/ |
D | v3_utl.c | 287 char *btmp; in X509V3_get_value_bool() local 288 if (!(btmp = value->value)) in X509V3_get_value_bool() 290 if (!strcmp(btmp, "TRUE") || !strcmp(btmp, "true") in X509V3_get_value_bool() 291 || !strcmp(btmp, "Y") || !strcmp(btmp, "y") in X509V3_get_value_bool() 292 || !strcmp(btmp, "YES") || !strcmp(btmp, "yes")) { in X509V3_get_value_bool() 295 } else if (!strcmp(btmp, "FALSE") || !strcmp(btmp, "false") in X509V3_get_value_bool() 296 || !strcmp(btmp, "N") || !strcmp(btmp, "n") in X509V3_get_value_bool() 297 || !strcmp(btmp, "NO") || !strcmp(btmp, "no")) { in X509V3_get_value_bool()
|
/external/boringssl/src/crypto/x509v3/ |
D | v3_utl.c | 287 char *btmp; in X509V3_get_value_bool() local 288 if (!(btmp = value->value)) in X509V3_get_value_bool() 290 if (!strcmp(btmp, "TRUE") || !strcmp(btmp, "true") in X509V3_get_value_bool() 291 || !strcmp(btmp, "Y") || !strcmp(btmp, "y") in X509V3_get_value_bool() 292 || !strcmp(btmp, "YES") || !strcmp(btmp, "yes")) { in X509V3_get_value_bool() 295 } else if (!strcmp(btmp, "FALSE") || !strcmp(btmp, "false") in X509V3_get_value_bool() 296 || !strcmp(btmp, "N") || !strcmp(btmp, "n") in X509V3_get_value_bool() 297 || !strcmp(btmp, "NO") || !strcmp(btmp, "no")) { in X509V3_get_value_bool()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509/ |
D | a_strex.c | 600 BIO *btmp; in X509_NAME_print_ex_fp() local 602 btmp = BIO_new_fp(fp, BIO_NOCLOSE); in X509_NAME_print_ex_fp() 603 if (!btmp) in X509_NAME_print_ex_fp() 605 ret = X509_NAME_print(btmp, nm, indent); in X509_NAME_print_ex_fp() 606 BIO_free(btmp); in X509_NAME_print_ex_fp()
|
/external/boringssl/src/crypto/x509/ |
D | a_strex.c | 600 BIO *btmp; in X509_NAME_print_ex_fp() local 602 btmp = BIO_new_fp(fp, BIO_NOCLOSE); in X509_NAME_print_ex_fp() 603 if (!btmp) in X509_NAME_print_ex_fp() 605 ret = X509_NAME_print(btmp, nm, indent); in X509_NAME_print_ex_fp() 606 BIO_free(btmp); in X509_NAME_print_ex_fp()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/conf/ |
D | conf.c | 530 char btmp[DECIMAL_SIZE(eline) + 1]; in def_load_bio() local 721 BIO_snprintf(btmp, sizeof btmp, "%ld", eline); in def_load_bio() 722 ERR_add_error_data(2, "line ", btmp); in def_load_bio()
|
/external/boringssl/src/crypto/conf/ |
D | conf.c | 530 char btmp[DECIMAL_SIZE(eline) + 1]; in def_load_bio() local 721 BIO_snprintf(btmp, sizeof btmp, "%ld", eline); in def_load_bio() 722 ERR_add_error_data(2, "line ", btmp); in def_load_bio()
|
/external/rust/crates/libz-sys/src/zlib-ng/ |
D | .gitignore | 82 /btmp[12]/
|
/external/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()
|
/external/neon_2_sse/ |
D | NEON_2_SSE.h | 2677 _NEON2SSE_ALIGN_16 int32_t atmp[4], btmp[4], res[4]; in _NEON2SSE_PERFORMANCE_WARNING() local 2681 _mm_store_si128((__m128i*)btmp, b); in _NEON2SSE_PERFORMANCE_WARNING() 2683 res64 = atmp[i] * btmp[i]; in _NEON2SSE_PERFORMANCE_WARNING() 3313 _NEON2SSE_ALIGN_16 uint64_t atmp[2], btmp[2], res[2]; in _NEON2SSE_PERFORMANCE_WARNING() local 3315 _mm_store_si128((__m128i*)btmp, b); in _NEON2SSE_PERFORMANCE_WARNING() 3316 res[0] = atmp[0] + btmp[0]; in _NEON2SSE_PERFORMANCE_WARNING() 3317 res[1] = atmp[1] + btmp[1]; in _NEON2SSE_PERFORMANCE_WARNING() 3322 if ((int64_t)((btmp[0] ^ atmp[0]) | ~(res[0] ^ btmp[0]))>=0) { in _NEON2SSE_PERFORMANCE_WARNING() 3325 if ((int64_t)((btmp[1] ^ atmp[1]) | ~(res[1] ^ btmp[1]))>=0) { in _NEON2SSE_PERFORMANCE_WARNING() 3364 _NEON2SSE_ALIGN_16 uint64_t atmp[2], btmp[2], res[2]; in _NEON2SSE_PERFORMANCE_WARNING() local [all …]
|
/external/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()
|
/external/python/cpython3/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()
|
/external/openssh/ |
D | configure.ac | 739 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins]) 793 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts]) 794 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins]) 812 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts])
|
/external/selinux/python/sepolgen/tests/test_data/ |
D | httpd.log | 5688 …553.981:12304): avc: denied { write } for pid=12157 comm="touch" name="btmp" dev=dm-0 ino=14437… 5694 …4.029:12307): avc: denied { setattr } for pid=12158 comm="chown" name="btmp" dev=dm-0 ino=14437…
|