Lines Matching refs:_tmpBuffer
60 _tmpBuffer (0), in ZipCompressor()
71 _tmpBuffer = in ZipCompressor()
81 delete [] _tmpBuffer; in ~ZipCompressor()
114 char *t1 = _tmpBuffer; in compress()
115 char *t2 = _tmpBuffer + (inSize + 1) / 2; in compress()
137 unsigned char *t = (unsigned char *) _tmpBuffer + 1; in compress()
138 unsigned char *stop = (unsigned char *) _tmpBuffer + inSize; in compress()
157 (const Bytef *) _tmpBuffer, inSize)) in compress()
189 if (Z_OK != ::uncompress ((Bytef *)_tmpBuffer, &outSize, in uncompress()
200 unsigned char *t = (unsigned char *) _tmpBuffer + 1; in uncompress()
201 unsigned char *stop = (unsigned char *) _tmpBuffer + outSize; in uncompress()
216 const char *t1 = _tmpBuffer; in uncompress()
217 const char *t2 = _tmpBuffer + (outSize + 1) / 2; in uncompress()