Searched refs:right_len (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Objects/ |
H A D | unicodeobject.c | 11429 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Concat() local 11453 right_len = PyUnicode_GET_LENGTH(right); in PyUnicode_Concat() 11454 if (left_len > PY_SSIZE_T_MAX - right_len) { in PyUnicode_Concat() 11459 new_len = left_len + right_len; in PyUnicode_Concat() 11470 _PyUnicode_FastCopyCharacters(result, left_len, right, 0, right_len); in PyUnicode_Concat() 11480 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Append() local 11513 right_len = PyUnicode_GET_LENGTH(right); in PyUnicode_Append() 11514 if (left_len > PY_SSIZE_T_MAX - right_len) { in PyUnicode_Append() 11519 new_len = left_len + right_len; in PyUnicode_Append() 11535 _PyUnicode_FastCopyCharacters(*p_left, left_len, right, 0, right_len); in PyUnicode_Append() [all...] |
/third_party/python/Modules/ |
H A D | _ssl.c | 5025 unsigned int left_len, right_len; in PySSLSession_richcompare() local 5029 &right_len); in PySSLSession_richcompare() 5030 if (left_len == right_len) { in PySSLSession_richcompare()
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 30966 let (new_left_len, right_len) = Root::calc_split_length(total_num, &left_root, &right_root); in split_off() 30969 BTreeMap { root: Some(right_root), length: right_len } in split_off() 39680 let mut right_len = CAPACITY - middle_kv_idx - 1; test_splitpoint() variables [all...] |
Completed in 70 milliseconds