Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
DZLib.c21 #define CHUNK 32768 macro
33 unsigned char in[CHUNK]; in GzipDecompress()
34 unsigned char out[CHUNK]; in GzipDecompress()
48 stream.avail_in = CHUNK; in GzipDecompress()
57 if (left > CHUNK) in GzipDecompress()
59 stream.avail_in = CHUNK; in GzipDecompress()
60 left = left - CHUNK; in GzipDecompress()
76 stream.avail_out = CHUNK; in GzipDecompress()
88 have = CHUNK - stream.avail_out; in GzipDecompress()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_sgmllib.py358 CHUNK = 1024 # increasing this to 8212 makes the problem go away
363 data = f.read(CHUNK)
365 if len(data) != CHUNK:
Dtest_long.py811 CHUNK = 28
815 f = math.ldexp(f, CHUNK)
817 assert digit >> CHUNK == 0
818 top = (top << CHUNK) | digit
821 e -= CHUNK