Lines Matching defs:length
563 "zdict length does not fit in an unsigned int");
622 "zdict length does not fit in an unsigned int");
860 The maximum allowable length of the decompressed data.
1241 length: Py_ssize_t(c_default="DEF_BUF_SIZE") = zlib.DEF_BUF_SIZE
1250 Py_ssize_t length)
1267 if (length <= 0) {
1268 PyErr_SetString(PyExc_ValueError, "length must be greater than zero");
1282 if (OutputBuffer_WindowInitWithSize(&buffer, &window, length,
1407 /* Avoid truncation of length for very large buffers. adler32() takes
1408 length as an unsigned int, which may be narrower than Py_ssize_t. */
1446 /* Avoid truncation of length for very large buffers. crc32() takes
1447 length as an unsigned int, which may be narrower than Py_ssize_t. */