Searched refs:right_len (Results 1 – 3 of 3) sorted by relevance
/external/libxkbcommon/xkbcommon/src/compose/ |
D | paths.c | 59 size_t left_len, right_len, name_len; in resolve_name() local 111 right_len = s - right; in resolve_name() 119 match = strndup(right, right_len); in resolve_name() 124 if (right_len == name_len && memcmp(right, name, right_len) == 0) { in resolve_name()
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 11249 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Concat() local 11270 right_len = PyUnicode_GET_LENGTH(right); in PyUnicode_Concat() 11271 if (left_len > PY_SSIZE_T_MAX - right_len) { in PyUnicode_Concat() 11276 new_len = left_len + right_len; in PyUnicode_Concat() 11287 _PyUnicode_FastCopyCharacters(result, left_len, right, 0, right_len); in PyUnicode_Concat() 11297 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Append() local 11328 right_len = PyUnicode_GET_LENGTH(right); in PyUnicode_Append() 11329 if (left_len > PY_SSIZE_T_MAX - right_len) { in PyUnicode_Append() 11334 new_len = left_len + right_len; in PyUnicode_Append() 11350 _PyUnicode_FastCopyCharacters(*p_left, left_len, right, 0, right_len); in PyUnicode_Append() [all …]
|
/external/python/cpython3/Modules/ |
D | _ssl.c | 4898 unsigned int left_len, right_len; in PySSLSession_richcompare() local 4902 &right_len); in PySSLSession_richcompare() 4903 if (left_len == right_len) { in PySSLSession_richcompare()
|