Searched refs:CHUNK (Results 1 – 3 of 3) sorted by relevance
21 #define CHUNK 32768 macro33 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()
358 CHUNK = 1024 # increasing this to 8212 makes the problem go away363 data = f.read(CHUNK)365 if len(data) != CHUNK:
811 CHUNK = 28815 f = math.ldexp(f, CHUNK)817 assert digit >> CHUNK == 0818 top = (top << CHUNK) | digit821 e -= CHUNK