Home | History | Annotate | Download | only in Objects

Lines Matching defs:result_len

1594     Py_ssize_t self_len, result_len;
1611 /* result_len = count * to_len + self_len; */
1618 result_len = count * to_len + self_len;
1620 PyByteArray_FromStringAndSize(NULL, result_len)) )
1653 Py_ssize_t self_len, result_len;
1665 result_len = self_len - count; /* from_len == 1 */
1666 assert(result_len>=0);
1669 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL)
1697 Py_ssize_t self_len, result_len;
1713 result_len = self_len - (count * from_len);
1714 assert (result_len>=0);
1717 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL )
1846 Py_ssize_t self_len, result_len;
1860 /* result_len = self_len + count * (to_len-1) */
1866 result_len = self_len + count * (to_len - 1);
1869 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL)
1909 Py_ssize_t self_len, result_len;
1926 /* result_len = self_len + count * (to_len-from_len) */
1932 result_len = self_len + count * (to_len - from_len);
1935 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL)