Home
last modified time | relevance | path

Searched refs:compressedBuf (Results 1 – 19 of 19) sorted by relevance

/dports/archivers/snappy-java/snappy-java-1.1.7.5/src/test/java/org/xerial/snappy/
H A DCalgaryTest.java97 ByteArrayOutputStream compressedBuf = new ByteArrayOutputStream(); in stream() local
98 SnappyOutputStream out = new SnappyOutputStream(compressedBuf); in stream()
102 …SnappyInputStream in = new SnappyInputStream(new ByteArrayInputStream(compressedBuf.toByteArray())… in stream()
117 ByteArrayOutputStream compressedBuf = new ByteArrayOutputStream(); in streamFramed() local
118 SnappyFramedOutputStream out = new SnappyFramedOutputStream(compressedBuf); in streamFramed()
122 …InputStream in = new SnappyFramedInputStream(new ByteArrayInputStream(compressedBuf.toByteArray())… in streamFramed()
174 ByteArrayOutputStream compressedBuf = new ByteArrayOutputStream(); in streamFramedNoCRCVerify() local
175 SnappyFramedOutputStream out = new SnappyFramedOutputStream(compressedBuf); in streamFramedNoCRCVerify()
196 ByteArrayOutputStream compressedBuf = new ByteArrayOutputStream(); in byteWiseRead() local
197 SnappyOutputStream out = new SnappyOutputStream(compressedBuf); in byteWiseRead()
[all …]
H A DSnappyInputStreamTest.java85 ByteArrayOutputStream compressedBuf = new ByteArrayOutputStream(); in read() local
86 SnappyOutputStream snappyOut = new SnappyOutputStream(compressedBuf); in read()
90 byte[] compressed = compressedBuf.toByteArray(); in read()
162 ByteArrayOutputStream compressedBuf = new ByteArrayOutputStream(); in compressResource() local
163 SnappyOutputStream snappyOut = new SnappyOutputStream(compressedBuf); in compressResource()
167 return compressedBuf.toByteArray(); in compressResource()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapred/
H A DTestConcatenatedCompressedInput.java239 byte[] compressedBuf = new byte[256]; in testPrototypeInflaterGzip()
240 int numBytesRead = in.read(compressedBuf, 0, 10); in testPrototypeInflaterGzip()
242 assertEquals("1st byte", 0x1f, compressedBuf[0] & 0xff); in testPrototypeInflaterGzip()
243 assertEquals("2nd byte", 0x8b, compressedBuf[1] & 0xff); in testPrototypeInflaterGzip()
246 byte flags = (byte)(compressedBuf[3] & 0xff); in testPrototypeInflaterGzip()
248 numBytesRead = in.read(compressedBuf, 0, 2); in testPrototypeInflaterGzip()
250 int xlen = ((compressedBuf[1] << 8) | compressedBuf[0]) & 0xffff; in testPrototypeInflaterGzip()
269 numBytesRead = in.read(compressedBuf, 0, 2); in testPrototypeInflaterGzip()
271 int crc16 = ((compressedBuf[1] << 8) | compressedBuf[0]) & 0xffff; in testPrototypeInflaterGzip()
276 numBytesRead = in.read(compressedBuf); in testPrototypeInflaterGzip()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/mozglue/linker/
H A DZip.h77 : compressedBuf(nullptr), in Stream()
86 const void* GetBuffer() { return compressedBuf; } in GetBuffer()
101 reinterpret_cast<Bytef*>(const_cast<void*>(compressedBuf)); in GetZStream()
112 const void* compressedBuf; variable
H A DZip.cpp99 out->compressedBuf = data; in GetStream()
142 out->compressedBuf = data; in GetStream()
/dports/www/firefox/firefox-99.0/mozglue/linker/
H A DZip.h77 : compressedBuf(nullptr), in Stream()
86 const void* GetBuffer() { return compressedBuf; } in GetBuffer()
101 reinterpret_cast<Bytef*>(const_cast<void*>(compressedBuf)); in GetZStream()
112 const void* compressedBuf; variable
H A DZip.cpp99 out->compressedBuf = data; in GetStream()
142 out->compressedBuf = data; in GetStream()
/dports/mail/thunderbird/thunderbird-91.8.0/mozglue/linker/
H A DZip.h77 : compressedBuf(nullptr), in Stream()
86 const void* GetBuffer() { return compressedBuf; } in GetBuffer()
101 reinterpret_cast<Bytef*>(const_cast<void*>(compressedBuf)); in GetZStream()
112 const void* compressedBuf; variable
H A DZip.cpp99 out->compressedBuf = data; in GetStream()
142 out->compressedBuf = data; in GetStream()
/dports/lang/spidermonkey78/firefox-78.9.0/mozglue/linker/
H A DZip.h77 : compressedBuf(nullptr), in Stream()
86 const void* GetBuffer() { return compressedBuf; } in GetBuffer()
101 reinterpret_cast<Bytef*>(const_cast<void*>(compressedBuf)); in GetZStream()
112 const void* compressedBuf; variable
H A DZip.cpp99 out->compressedBuf = data; in GetStream()
142 out->compressedBuf = data; in GetStream()
/dports/www/firefox-legacy/firefox-52.8.0esr/mozglue/linker/
H A DZip.h215 Stream(): compressedBuf(nullptr), compressedSize(0), uncompressedSize(0) in Stream()
222 const void *GetBuffer() { return compressedBuf; } in GetBuffer()
238 const_cast<void *>(compressedBuf)); in GetZStream()
246 const void *compressedBuf; variable
H A DZip.cpp107 out->compressedBuf = data; in GetStream()
150 out->compressedBuf = data; in GetStream()
/dports/lang/spidermonkey60/firefox-60.9.0/mozglue/linker/
H A DZip.h201 : compressedBuf(nullptr), in Stream()
210 const void *GetBuffer() { return compressedBuf; } in GetBuffer()
225 reinterpret_cast<Bytef *>(const_cast<void *>(compressedBuf)); in GetZStream()
233 const void *compressedBuf; variable
H A DZip.cpp99 out->compressedBuf = data; in GetStream()
142 out->compressedBuf = data; in GetStream()
/dports/devel/spark/spark-2.1.1/sql/core/src/test/scala/org/apache/spark/sql/execution/columnar/compression/
H A DCompressionSchemeBenchmark.scala108 val compressedBuf = compressFunc(input, buf) constant
117 compressedBuf.rewind.position(4)
118 val decoder = scheme.decoder(compressedBuf, tpe)
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/writeengine/shared/
H A Dwe_fileop.cpp1538 unsigned char* compressedBuf = new unsigned char[ OUT_BUF_LEN ]; in fillCompColumnExtentEmptyChunks() local
1541 compressedOutputPtr(compressedBuf); in fillCompColumnExtentEmptyChunks()
1548 IN_BUF_LEN, compressedBuf, outputLen ); in fillCompColumnExtentEmptyChunks()
1559 rcComp = compressor.padCompressedChunks( compressedBuf, in fillCompColumnExtentEmptyChunks()
1591 (unsigned char*)compressedBuf, in fillCompColumnExtentEmptyChunks()
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/writeengine/shared/
H A Dwe_fileop.cpp1538 unsigned char* compressedBuf = new unsigned char[ OUT_BUF_LEN ]; in fillCompColumnExtentEmptyChunks() local
1541 compressedOutputPtr(compressedBuf); in fillCompColumnExtentEmptyChunks()
1548 IN_BUF_LEN, compressedBuf, outputLen ); in fillCompColumnExtentEmptyChunks()
1559 rcComp = compressor.padCompressedChunks( compressedBuf, in fillCompColumnExtentEmptyChunks()
1591 (unsigned char*)compressedBuf, in fillCompColumnExtentEmptyChunks()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/imaging/
H A DossimNitfTileSource.cpp3453 std::vector<ossim_uint8> compressedBuf(theNitfBlockSize[blockNumber]); in uncompressJpegBlock() local
3454 if (!theFileStr->read((char*)&(compressedBuf.front()), in uncompressJpegBlock()
3504 &(compressedBuf.front()), in uncompressJpegBlock()