Searched refs:sig_r (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/multiprocessing/ |
D | forkserver.py | 184 sig_r, sig_w = os.pipe() 185 os.set_blocking(sig_r, False) 213 selector.register(sig_r, selectors.EVENT_READ) 227 if sig_r in rfds: 229 os.read(sig_r, 65536) # exhaust 272 unused_fds = [alive_r, child_w, sig_r, sig_w]
|
/third_party/openssl/test/ |
D | sm2_internal_test.c | 316 const BIGNUM *sig_r = NULL; in test_sm2_sign() local 345 ECDSA_SIG_get0(sig, &sig_r, &sig_s); in test_sm2_sign() 349 || !TEST_BN_eq(r, sig_r) in test_sm2_sign()
|
D | ecdsatest.c | 87 const BIGNUM *sig_r = NULL, *sig_s = NULL; in x9_62_tests() local 139 ECDSA_SIG_get0(signature, &sig_r, &sig_s); in x9_62_tests() 140 if (!TEST_BN_eq(sig_r, r) in x9_62_tests()
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_ecdsa.function | 493 mbedtls_mpi sig_r, sig_s; 496 mbedtls_mpi_init(&sig_r); 508 TEST_EQUAL(mbedtls_test_read_mpi(&sig_r, r), 0); 516 int result = mbedtls_ecdsa_verify(&ctx.grp, content->x, content->len, &ctx.Q, &sig_r, &sig_s); 521 mbedtls_mpi_free(&sig_r);
|