Lines Matching defs:size
16 #error "The maximum block size accepted by zlib is UINT32_MAX."
65 /* The max buffer size accepted by zlib is UINT32_MAX, the initial buffer size
85 /* Initialize the buffer with an initial buffer size.
186 /* Initial buffer size. */
283 PyZlib_Malloc(voidpf ctx, uInt items, uInt size)
285 if (size != 0 && items > (size_t)PY_SSIZE_T_MAX / size)
289 return PyMem_RawMalloc((size_t)items * (size_t)size);
314 The window buffer size and container format.
410 The window buffer size and container format.
412 The initial output buffer size.
537 +9 to +15: The base-two logarithm of the window size. Include a zlib
641 The window buffer size and container format.
1242 the initial size of the output buffer.
1511 "'wbits' is window buffer size and container format.\n"