Home
last modified time | relevance | path

Searched refs:p_str (Results 1 – 11 of 11) sorted by relevance

/third_party/openssl/crypto/bn/
Drsaz_exp.c63 unsigned char *p_str = storage + (64 - ((size_t)storage % 64));
65 unsigned char *table_s = p_str + 320 * 3;
71 if ((((size_t)p_str & 4095) + 320) >> 12) {
72 result = p_str;
73 a_inv = p_str + 320;
74 m = p_str + 320 * 2; /* should not cross page */
76 m = p_str; /* should not cross page */
77 result = p_str + 320;
78 a_inv = p_str + 320 * 2;
210 p_str = (unsigned char *)exponent;
[all …]
/third_party/node/deps/openssl/openssl/crypto/bn/
Drsaz_exp.c63 unsigned char *p_str = storage + (64 - ((size_t)storage % 64));
65 unsigned char *table_s = p_str + 320 * 3;
71 if ((((size_t)p_str & 4095) + 320) >> 12) {
72 result = p_str;
73 a_inv = p_str + 320;
74 m = p_str + 320 * 2; /* should not cross page */
76 m = p_str; /* should not cross page */
77 result = p_str + 320;
78 a_inv = p_str + 320 * 2;
210 p_str = (unsigned char *)exponent;
[all …]
/third_party/openssl/crypto/ec/
Decp_nistz256.c625 unsigned char (*p_str)[33] = NULL; in ecp_nistz256_windowed_mul() local
637 || (p_str = in ecp_nistz256_windowed_mul()
667 p_str[i][j + 0] = (unsigned char)d; in ecp_nistz256_windowed_mul()
668 p_str[i][j + 1] = (unsigned char)(d >> 8); in ecp_nistz256_windowed_mul()
669 p_str[i][j + 2] = (unsigned char)(d >> 16); in ecp_nistz256_windowed_mul()
670 p_str[i][j + 3] = (unsigned char)(d >>= 24); in ecp_nistz256_windowed_mul()
673 p_str[i][j + 4] = (unsigned char)d; in ecp_nistz256_windowed_mul()
674 p_str[i][j + 5] = (unsigned char)(d >> 8); in ecp_nistz256_windowed_mul()
675 p_str[i][j + 6] = (unsigned char)(d >> 16); in ecp_nistz256_windowed_mul()
676 p_str[i][j + 7] = (unsigned char)(d >> 24); in ecp_nistz256_windowed_mul()
[all …]
/third_party/node/deps/openssl/openssl/crypto/ec/
Decp_nistz256.c625 unsigned char (*p_str)[33] = NULL; in ecp_nistz256_windowed_mul() local
637 || (p_str = in ecp_nistz256_windowed_mul()
667 p_str[i][j + 0] = (unsigned char)d; in ecp_nistz256_windowed_mul()
668 p_str[i][j + 1] = (unsigned char)(d >> 8); in ecp_nistz256_windowed_mul()
669 p_str[i][j + 2] = (unsigned char)(d >> 16); in ecp_nistz256_windowed_mul()
670 p_str[i][j + 3] = (unsigned char)(d >>= 24); in ecp_nistz256_windowed_mul()
673 p_str[i][j + 4] = (unsigned char)d; in ecp_nistz256_windowed_mul()
674 p_str[i][j + 5] = (unsigned char)(d >> 8); in ecp_nistz256_windowed_mul()
675 p_str[i][j + 6] = (unsigned char)(d >> 16); in ecp_nistz256_windowed_mul()
676 p_str[i][j + 7] = (unsigned char)(d >> 24); in ecp_nistz256_windowed_mul()
[all …]
/third_party/jinja2/
Dutils.py381 p_str = " ".join(p)
383 if p_str.endswith(","):
384 p_str = p_str[:-1] + "."
385 elif not p_str.endswith("."):
386 p_str += "."
388 result.append(p_str)
/third_party/rust/crates/nix/src/mount/
Dlinux.rs78 Some(path) => path.with_nix_path(|p_str| f(p_str.as_ptr())), in mount()
/third_party/openssl/providers/implementations/rands/
Ddrbg.c199 unsigned int p_str; in get_entropy() local
214 if (!get_parent_strength(drbg, &p_str)) in get_entropy()
216 if (drbg->strength > p_str) { in get_entropy()
779 unsigned int p_str; in ossl_rand_drbg_new() local
829 if (!get_parent_strength(drbg, &p_str)) in ossl_rand_drbg_new()
831 if (drbg->strength > p_str) { in ossl_rand_drbg_new()
/third_party/node/deps/openssl/openssl/providers/implementations/rands/
Ddrbg.c199 unsigned int p_str; in get_entropy() local
214 if (!get_parent_strength(drbg, &p_str)) in get_entropy()
216 if (drbg->strength > p_str) { in get_entropy()
779 unsigned int p_str; in ossl_rand_drbg_new() local
829 if (!get_parent_strength(drbg, &p_str)) in ossl_rand_drbg_new()
831 if (drbg->strength > p_str) { in ossl_rand_drbg_new()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
Dregcomp.c208 static void p_str(struct parse *);
362 p_str(p); in llvm_regcomp()
611 p_str(struct parse *p) in p_str() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
Dregcomp.c80 static void p_str(struct parse *);
234 p_str(p); in llvm_regcomp()
483 p_str(struct parse *p) in p_str() function
/third_party/python/Objects/
Dunicodeobject.c15210 PyObject **p_str) in unicode_format_arg_format() argument
15235 *p_str = v; in unicode_format_arg_format()
15236 Py_INCREF(*p_str); in unicode_format_arg_format()
15240 *p_str = PyObject_Str(v); in unicode_format_arg_format()
15242 *p_str = PyObject_Repr(v); in unicode_format_arg_format()
15244 *p_str = PyObject_ASCII(v); in unicode_format_arg_format()
15255 int ret = mainformatlong(v, arg, p_str, writer); in unicode_format_arg_format()
15278 if (formatfloat(v, arg, p_str, NULL) == -1) in unicode_format_arg_format()
15293 *p_str = PyUnicode_FromOrdinal(ch); in unicode_format_arg_format()
15306 if (*p_str == NULL) in unicode_format_arg_format()
[all …]