Home
last modified time | relevance | path

Searched refs:right_len (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Objects/
Dunicodeobject.c11744 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Concat() local
11768 right_len = PyUnicode_GET_LENGTH(right); in PyUnicode_Concat()
11769 if (left_len > PY_SSIZE_T_MAX - right_len) { in PyUnicode_Concat()
11774 new_len = left_len + right_len; in PyUnicode_Concat()
11785 _PyUnicode_FastCopyCharacters(result, left_len, right, 0, right_len); in PyUnicode_Concat()
11795 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Append() local
11828 right_len = PyUnicode_GET_LENGTH(right); in PyUnicode_Append()
11829 if (left_len > PY_SSIZE_T_MAX - right_len) { in PyUnicode_Append()
11834 new_len = left_len + right_len; in PyUnicode_Append()
11850 _PyUnicode_FastCopyCharacters(*p_left, left_len, right, 0, right_len); in PyUnicode_Append()
[all …]
/third_party/python/Modules/
D_ssl.c4923 unsigned int left_len, right_len; in PySSLSession_richcompare() local
4927 &right_len); in PySSLSession_richcompare()
4928 if (left_len == right_len) { in PySSLSession_richcompare()
/third_party/rust/crates/memchr/bench/data/code/
Drust-library.rs30966 let (new_left_len, right_len) = Root::calc_split_length(total_num, &left_root, &right_root);
30969 BTreeMap { root: Some(right_root), length: right_len }
39155 let right_len = right_node.len(); localVariable
39156 let new_left_len = old_left_len + 1 + right_len;
39166 right_node.key_area_mut(..right_len),
39173 right_node.val_area_mut(..right_len),
39187 right_node.edge_area_mut(..right_len + 1),
39227 let right_len = self.right_child.len(); localVariable
39230 LeftOrRight::Right(idx) => idx <= right_len,
39680 let mut right_len = CAPACITY - middle_kv_idx - 1; localVariable
[all …]