Home
last modified time | relevance | path

Searched refs:gStream (Results 1 – 7 of 7) sorted by relevance

/dports/archivers/pixz/pixz-1.0.7/src/
H A Dwrite.c454 gStream.next_out = obuf; in encode_index()
455 gStream.avail_out = CHUNKSIZE; in encode_index()
456 err = lzma_code(&gStream, LZMA_RUN); in encode_index()
459 if (gStream.avail_out != CHUNKSIZE) { in encode_index()
464 lzma_end(&gStream); in encode_index()
494 lzma_end(&gStream); in write_file_index()
517 gStream.avail_in = gFileIndexBufPos; in write_file_index_buf()
518 gStream.next_in = gFileIndexBuf; in write_file_index_buf()
521 gStream.avail_out = CHUNKSIZE; in write_file_index_buf()
522 gStream.next_out = obuf; in write_file_index_buf()
[all …]
H A Dcommon.c11 lzma_stream gStream = LZMA_STREAM_INIT; variable
132 gStream.avail_out = gFIBSize; in find_file_index()
133 gStream.avail_in = 0; in find_file_index()
151 lzma_end(&gStream); in find_file_index()
180 lzma_end(&gStream); in read_file_index()
197 if (gStream.avail_out == 0) in read_file_index_name()
210 gStream.avail_out += gFIBPos; in read_file_index_make_space()
215 gStream.avail_out += gFIBSize; in read_file_index_make_space()
231 gStream.next_out = gFileIndexBuf + gFIBSize - gStream.avail_out; in read_file_index_data()
233 if (gStream.avail_in == 0) { in read_file_index_data()
[all …]
H A Dlist.c24 lzma_end(&gStream); in pixz_list()
H A Dpixz.h58 extern lzma_stream gStream;
/dports/editors/libreoffice/libreoffice-7.2.6.2/writerfilter/source/ooxml/
H A DOOXMLDocumentImpl.cxx633 OOXMLStream::Pointer_t gStream; in resolveGlossaryStream() local
683 gStream = OOXMLDocumentFactory::createStream(pStream, nType); in resolveGlossaryStream()
684 uno::Reference<io::XInputStream> xInputStream = gStream->getDocumentStream(); in resolveGlossaryStream()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/writerfilter/source/ooxml/
H A DOOXMLDocumentImpl.cxx624 OOXMLStream::Pointer_t gStream; in resolveGlossaryStream() local
674 gStream = OOXMLDocumentFactory::createStream(pStream, nType); in resolveGlossaryStream()
675 uno::Reference<io::XInputStream> xInputStream = gStream->getDocumentStream(); in resolveGlossaryStream()
/dports/astro/kstars/kstars-3.5.6/kstars/
H A Dkstarsdata.cpp587 QTextStream gStream(&globalFile); in openUrlFile() local
588 while (!gStream.atEnd()) in openUrlFile()
590 QString line = gStream.readLine(); in openUrlFile()