Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzlibmodule.c215 Py_ssize_t r_strlen=DEFAULTALLOC; in PyZlib_decompress() local
219 &input, &length, &wsize, &r_strlen)) in PyZlib_decompress()
222 if (r_strlen <= 0) in PyZlib_decompress()
223 r_strlen = 1; in PyZlib_decompress()
226 zst.avail_out = r_strlen; in PyZlib_decompress()
228 if (!(result_str = PyString_FromStringAndSize(NULL, r_strlen))) in PyZlib_decompress()
272 if (_PyString_Resize(&result_str, r_strlen << 1) < 0) { in PyZlib_decompress()
277 + r_strlen; in PyZlib_decompress()
278 zst.avail_out = r_strlen; in PyZlib_decompress()
279 r_strlen = r_strlen << 1; in PyZlib_decompress()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dzlibmodule.c221 Py_ssize_t r_strlen=DEFAULTALLOC; in PyZlib_decompress() local
225 &input, &length, &wsize, &r_strlen)) in PyZlib_decompress()
228 if (r_strlen <= 0) in PyZlib_decompress()
229 r_strlen = 1; in PyZlib_decompress()
232 zst.avail_out = r_strlen; in PyZlib_decompress()
234 if (!(result_str = PyString_FromStringAndSize(NULL, r_strlen))) in PyZlib_decompress()
278 if (_PyString_Resize(&result_str, r_strlen << 1) < 0) { in PyZlib_decompress()
283 + r_strlen; in PyZlib_decompress()
284 zst.avail_out = r_strlen; in PyZlib_decompress()
285 r_strlen = r_strlen << 1; in PyZlib_decompress()