Searched defs:from_len (Results 1 - 6 of 6) sorted by relevance

/external/boringssl/src/decrepit/rsa/
H A Drsa_decrepit.c99 const uint8_t *from, size_t from_len,
101 return RSA_padding_add_PKCS1_OAEP_mgf1(to, to_len, from, from_len, param,
98 RSA_padding_add_PKCS1_OAEP(uint8_t *to, size_t to_len, const uint8_t *from, size_t from_len, const uint8_t *param, size_t param_len) argument
/external/python/cpython3/Objects/stringlib/
H A Dtransmogrify.h325 result_len = self_len - count; /* from_len == 1 */
353 const char *from_s, Py_ssize_t from_len,
366 from_s, from_len,
374 result_len = self_len - (count * from_len);
387 from_s, from_len,
396 start = next + from_len;
452 const char *from_s, Py_ssize_t from_len,
467 from_s, from_len,
484 memcpy(start, to_s, from_len);
485 start += from_len;
352 stringlib_replace_delete_substring(PyObject *self, const char *from_s, Py_ssize_t from_len, Py_ssize_t maxcount) argument
451 stringlib_replace_substring_in_place(PyObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
567 stringlib_replace_substring(PyObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
636 stringlib_replace(PyObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
[all...]
/external/boringssl/src/crypto/fipsmodule/rsa/
H A Dpadding.c76 const uint8_t *from, size_t from_len) {
83 if (from_len > to_len - RSA_PKCS1_PADDING_SIZE) {
90 OPENSSL_memset(to + 2, 0xff, to_len - 3 - from_len);
91 to[to_len - from_len - 1] = 0;
92 OPENSSL_memcpy(to + to_len - from_len, from, from_len);
98 size_t from_len) {
101 if (from_len < 2) {
114 for (pad = 2 /* header */; pad < from_len; pad++) {
125 if (pad == from_len) {
75 RSA_padding_add_PKCS1_type_1(uint8_t *to, size_t to_len, const uint8_t *from, size_t from_len) argument
96 RSA_padding_check_PKCS1_type_1(uint8_t *out, size_t *out_len, size_t max_out, const uint8_t *from, size_t from_len) argument
164 RSA_padding_add_PKCS1_type_2(uint8_t *to, size_t to_len, const uint8_t *from, size_t from_len) argument
190 RSA_padding_check_PKCS1_type_2(uint8_t *out, size_t *out_len, size_t max_out, const uint8_t *from, size_t from_len) argument
254 RSA_padding_add_none(uint8_t *to, size_t to_len, const uint8_t *from, size_t from_len) argument
313 RSA_padding_add_PKCS1_OAEP_mgf1(uint8_t *to, size_t to_len, const uint8_t *from, size_t from_len, const uint8_t *param, size_t param_len, const EVP_MD *md, const EVP_MD *mgf1md) argument
384 RSA_padding_check_PKCS1_OAEP_mgf1(uint8_t *out, size_t *out_len, size_t max_out, const uint8_t *from, size_t from_len, const uint8_t *param, size_t param_len, const EVP_MD *md, const EVP_MD *mgf1md) argument
[all...]
/external/python/cpython2/Objects/
H A Dbytearrayobject.c1645 result_len = self_len - count; /* from_len == 1 */
1672 const char *from_s, Py_ssize_t from_len,
1685 from_s, from_len,
1693 result_len = self_len - (count * from_len);
1706 from_s, from_len,
1715 start = next+from_len;
1769 const char *from_s, Py_ssize_t from_len,
1784 from_s, from_len,
1800 Py_MEMCPY(start, to_s, from_len);
1801 start += from_len;
1671 replace_delete_substring(PyByteArrayObject *self, const char *from_s, Py_ssize_t from_len, Py_ssize_t maxcount) argument
1768 replace_substring_in_place(PyByteArrayObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
1886 replace_substring(PyByteArrayObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
1958 replace(PyByteArrayObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
[all...]
H A Dstringobject.c2432 result_len = self_len - count; /* from_len == 1 */
2459 const char *from_s, Py_ssize_t from_len,
2471 from_s, from_len,
2479 result_len = self_len - (count * from_len);
2492 from_s, from_len,
2501 start = next+from_len;
2555 const char *from_s, Py_ssize_t from_len,
2570 from_s, from_len,
2586 Py_MEMCPY(start, to_s, from_len);
2587 start += from_len;
2458 replace_delete_substring(PyStringObject *self, const char *from_s, Py_ssize_t from_len, Py_ssize_t maxcount) argument
2554 replace_substring_in_place(PyStringObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
2672 replace_substring(PyStringObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
2743 replace(PyStringObject *self, const char *from_s, Py_ssize_t from_len, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
2825 Py_ssize_t from_len, to_len; local
[all...]
/external/libedit/src/
H A Dreadline.c778 size_t len, from_len; local
838 from_len = strlen(from);
840 if (len + from_len + 1 >= size) {
842 size += from_len + 1;
855 len += from_len;

Completed in 851 milliseconds