Searched refs:_tmpBuffer (Results 1 – 10 of 10) sorted by relevance
/external/opencv3/3rdparty/openexr/IlmImf/ |
D | ImfZipCompressor.cpp | 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() [all …]
|
D | ImfRleCompressor.cpp | 165 _tmpBuffer (0), in RleCompressor() 168 _tmpBuffer = new char [maxScanLineSize]; in RleCompressor() 175 delete [] _tmpBuffer; in ~RleCompressor() 212 char *t1 = _tmpBuffer; in compress() 213 char *t2 = _tmpBuffer + (inSize + 1) / 2; in compress() 235 unsigned char *t = (unsigned char *) _tmpBuffer + 1; in compress() 236 unsigned char *stop = (unsigned char *) _tmpBuffer + inSize; in compress() 253 return rleCompress (inSize, _tmpBuffer, (signed char *) _outBuffer); in compress() 281 _tmpBuffer))) in uncompress() 291 unsigned char *t = (unsigned char *) _tmpBuffer + 1; in uncompress() [all …]
|
D | ImfPxr24Compressor.cpp | 186 _tmpBuffer (0), in Pxr24Compressor() 198 _tmpBuffer = new unsigned char [maxInBytes]; in Pxr24Compressor() 211 delete [] _tmpBuffer; in ~Pxr24Compressor() 295 unsigned char *tmpBufferEnd = _tmpBuffer; in compress() 397 uLongf outSize = int (ceil ((tmpBufferEnd - _tmpBuffer) * 1.01)) + 100; in compress() 401 (const Bytef *) _tmpBuffer, in compress() 402 tmpBufferEnd - _tmpBuffer)) in compress() 426 if (Z_OK != ::uncompress ((Bytef *)_tmpBuffer, in uncompress() 439 const unsigned char *tmpBufferEnd = _tmpBuffer; in uncompress() 468 if (tmpBufferEnd - _tmpBuffer > tmpSize) in uncompress() [all …]
|
D | ImfPizCompressor.cpp | 179 _tmpBuffer (0), in PizCompressor() 192 _tmpBuffer = new unsigned short in PizCompressor() 233 delete [] _tmpBuffer; in ~PizCompressor() 343 unsigned short *tmpBufferEnd = _tmpBuffer; in compress() 427 bitmapFromData (_tmpBuffer, in compress() 428 tmpBufferEnd - _tmpBuffer, in compress() 434 applyLut (lut, _tmpBuffer, tmpBufferEnd - _tmpBuffer); in compress() 475 int length = hufCompress (_tmpBuffer, tmpBufferEnd - _tmpBuffer, buf); in compress() 519 unsigned short *tmpBufferEnd = _tmpBuffer; in uncompress() 575 hufUncompress (inPtr, length, _tmpBuffer, tmpBufferEnd - _tmpBuffer); in uncompress() [all …]
|
D | ImfB44Compressor.cpp | 478 _tmpBuffer (0), in B44Compressor() 491 _tmpBuffer = new unsigned short in B44Compressor() 553 delete [] _tmpBuffer; in ~B44Compressor() 658 unsigned short *tmpBufferEnd = _tmpBuffer; in compress() 891 unsigned short *tmpBufferEnd = _tmpBuffer; in uncompress()
|
D | ImfRleCompressor.h | 72 char * _tmpBuffer; variable
|
D | ImfZipCompressor.h | 76 char * _tmpBuffer; variable
|
D | ImfPxr24Compressor.h | 97 unsigned char * _tmpBuffer; variable
|
D | ImfPizCompressor.h | 102 unsigned short * _tmpBuffer; variable
|
D | ImfB44Compressor.h | 104 unsigned short * _tmpBuffer; variable
|