Lines Matching refs:allocated
25 Py_ssize_t allocated;
27 allocated = _BlocksOutputBuffer_InitAndGrow(
29 *avail_out = (uint32_t) allocated;
30 return allocated;
39 Py_ssize_t allocated;
41 allocated = _BlocksOutputBuffer_Grow(
43 *avail_out = (uint32_t) allocated;
44 return allocated;
94 Py_ssize_t allocated = _BlocksOutputBuffer_InitWithSize(
97 if (allocated >= 0) {
99 Py_ssize_t window_size = Py_MIN((size_t)allocated, UINT32_MAX);
102 window->left_bytes = allocated - window_size;
105 return allocated;
116 Py_ssize_t allocated;
141 allocated = _BlocksOutputBuffer_Grow(
143 *avail_out = (uint32_t) allocated;
144 return allocated;
1328 /* If at end of stream, clean up any memory allocated by zlib. */