HomeSort by relevance Sort by last modified time
    Searched refs:out_s (Results 1 - 9 of 9) sorted by null

  /external/boringssl/src/include/openssl/
ecdsa.h 109 // ECDSA_SIG_get0 sets |*out_r| and |*out_s|, if non-NULL, to the two
112 const BIGNUM **out_s);
  /external/boringssl/src/crypto/fipsmodule/ecdsa/
ecdsa.c 126 const BIGNUM **out_s) {
130 if (out_s != NULL) {
131 *out_s = sig->s;
  /external/antlr/runtime/Python/
xmlrunner.py 188 out_s = sys.stdout.getvalue()
190 out_s = ""
200 result.print_report(stream, time_taken, out_s, err_s)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
stropmodule.c 1095 char *out_s; local
1114 out_s = (char *)PyMem_MALLOC(1);
1115 if (out_s == NULL)
1117 out_s[0] = '\0';
1124 out_s = new_s;
1147 return out_s;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
stropmodule.c 1093 char *out_s; local
1112 out_s = (char *)PyMem_MALLOC(1);
1113 if (out_s == NULL)
1115 out_s[0] = '\0';
1122 out_s = new_s;
1145 return out_s;
    [all...]
  /external/python/cpython2/Modules/
stropmodule.c 1095 char *out_s; local
1121 out_s = (char *)PyMem_MALLOC(1);
1122 if (out_s == NULL)
1124 out_s[0] = '\0';
1131 out_s = new_s;
1154 return out_s;
    [all...]
  /external/boringssl/src/crypto/hrss/
hrss.c 547 // poly3_word_mul sets (|out_s|, |out_a) to (|s1|, |a1|) × (|s2|, |a2|).
548 static void poly3_word_mul(crypto_word_t *out_s, crypto_word_t *out_a,
552 *out_s = (s1 ^ s2) & *out_a;
555 // poly3_word_add sets (|out_s|, |out_a|) to (|s1|, |a1|) + (|s2|, |a2|).
556 static void poly3_word_add(crypto_word_t *out_s, crypto_word_t *out_a,
560 *out_s = t & (s2 ^ a1);
564 // poly3_word_sub sets (|out_s|, |out_a|) to (|s1|, |a1|) - (|s2|, |a2|).
565 static void poly3_word_sub(crypto_word_t *out_s, crypto_word_t *out_a,
569 *out_s = (s1 ^ a2) & (t ^ s2);
827 const vec_t out_s = a_s[i] local
    [all...]
  /external/python/cpython3/Modules/
_testcapimodule.c 791 Py_ssize_t out_s; local
805 out_s = PyLong_AsSsize_t(Py_None);
806 if (out_s != (Py_ssize_t)-1 || !PyErr_Occurred())
    [all...]
  /art/compiler/optimizing/
code_generator_arm_vixl.cc 3705 vixl32::SRegister out_s = LowSRegisterFrom(out); local
    [all...]

Completed in 1226 milliseconds