Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dbz2module.c1666 size_t buffer_left = PyString_GET_SIZE(ret) - output_size; in BZ2Comp_compress() local
1667 if (buffer_left == 0) { in BZ2Comp_compress()
1673 buffer_left = PyString_GET_SIZE(ret) - output_size; in BZ2Comp_compress()
1675 bzs->avail_out = MIN(buffer_left, UINT_MAX); in BZ2Comp_compress()
1738 size_t buffer_left = PyString_GET_SIZE(ret) - output_size; in BZ2Comp_flush() local
1739 if (buffer_left == 0) { in BZ2Comp_flush()
1743 buffer_left = PyString_GET_SIZE(ret) - output_size; in BZ2Comp_flush()
1745 bzs->avail_out = MIN(buffer_left, UINT_MAX); in BZ2Comp_flush()
1974 size_t buffer_left = PyString_GET_SIZE(ret) - output_size; in BZ2Decomp_decompress() local
1975 if (buffer_left == 0) { in BZ2Decomp_decompress()
[all …]