Searched refs:out_s (Results 1 – 7 of 7) sorted by relevance
/external/boringssl/src/crypto/fipsmodule/ecdsa/ |
D | ecdsa.c | 126 const BIGNUM **out_s) { in ECDSA_SIG_get0() argument 130 if (out_s != NULL) { in ECDSA_SIG_get0() 131 *out_s = sig->s; in ECDSA_SIG_get0()
|
/external/antlr/runtime/Python/ |
D | xmlrunner.py | 188 out_s = sys.stdout.getvalue() 190 out_s = "" 200 result.print_report(stream, time_taken, out_s, err_s)
|
/external/python/cpython2/Modules/ |
D | stropmodule.c | 1095 char *out_s; in mymemreplace() local 1121 out_s = (char *)PyMem_MALLOC(1); in mymemreplace() 1122 if (out_s == NULL) in mymemreplace() 1124 out_s[0] = '\0'; in mymemreplace() 1131 out_s = new_s; in mymemreplace() 1154 return out_s; in mymemreplace()
|
/external/boringssl/src/include/openssl/ |
D | ecdsa.h | 112 const BIGNUM **out_s);
|
/external/boringssl/src/crypto/hrss/ |
D | hrss.c | 548 static void poly3_word_mul(crypto_word_t *out_s, crypto_word_t *out_a, in poly3_word_mul() argument 552 *out_s = (s1 ^ s2) & *out_a; in poly3_word_mul() 556 static void poly3_word_add(crypto_word_t *out_s, crypto_word_t *out_a, in poly3_word_add() argument 560 *out_s = t & (s2 ^ a1); in poly3_word_add() 565 static void poly3_word_sub(crypto_word_t *out_s, crypto_word_t *out_a, in poly3_word_sub() argument 569 *out_s = (s1 ^ a2) & (t ^ s2); in poly3_word_sub() 827 const vec_t out_s = a_s[i]; in poly3_vec_fmsub() local 830 a_s[i] = (out_s ^ product_a) & (t ^ product_s); in poly3_vec_fmsub() 831 a_a[i] = t | (out_s ^ product_s); in poly3_vec_fmsub()
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 791 Py_ssize_t out_s; in test_long_as_size_t() local 805 out_s = PyLong_AsSsize_t(Py_None); in test_long_as_size_t() 806 if (out_s != (Py_ssize_t)-1 || !PyErr_Occurred()) in test_long_as_size_t()
|
/external/scapy/test/ |
D | regression.uts | 1152 out_s = conf.L2socket(iface=conf.iface) 1155 res = sndrcv(out_s, icmp_r, timeout=5, rcv_pks=read_s)[0] 1157 out_s.close()
|