Home
last modified time | relevance | path

Searched refs:gzread (Results 1 – 25 of 26) sorted by relevance

12

/openbsd/gnu/usr.bin/perl/cpan/IO-Compress/t/
H A Dcz-14gzopen.t77 is $fil->gzread($uncomp), $len;
82 # gzread after eof bahavior
85 is $fil->gzread($xyz), 0, "gzread returns 0 on eof" ;
308 cmp_ok $fil->gzread($line, length $line2), '>', 0, ' gzread ok' ;
312 cmp_ok $fil->gzread($line, length $line3), '>', 0, ' gzread ok' ;
373 $x = $fil->gzread($uncomp);
469 is $fil->gzread(), Z_STREAM_ERROR, " gzread returns Z_STREAM_ERROR" ;
562 ok $io->gzread($buff, 5) ;
576 ok $io->gzread($buff, 100) ;
622 is $u->gzread($buf1, 0), 0, " gzread returns 0";
[all …]
H A Dcz-03zlib-v1.t367 is $fil->gzread($uncomp, 0), 0 ;
368 ok (($x = $fil->gzread($uncomp)) == $len) ;
397 ok (($x = $fil->gzread($uncomp)) == $len) ;
536 is $fil->gzread($input), length $data ;
543 is $fil->gzread($input), length $data ;
1160 cmp_ok $fil->gzread($input, 50000), ">", 0, "read more than zero bytes";
1174 while ($fil->gzread($input, 50000) > 0)
H A Dcz-08encoding.t110 is $fil->gzread($uncomp), $byte_len, " read $byte_len bytes" ;
H A Dcz-06gzsetp.t90 is $len, $k->gzread($uncompressed, $len) ;
/openbsd/gnu/usr.bin/perl/cpan/IO-Zlib/
H A DZlib.pm411 *IO::Handle::gzread = \&gzread_external;
422 *gzread = \&Compress::Zlib::gzread;
502 my $bytesread = $self->{'file'}->gzread(substr($$bufref,$offset),$nbytes);
/openbsd/usr.sbin/vmd/
H A Dloadfile_elf.c276 if ((r = gzread(fp, &hdr, sizeof(hdr))) != sizeof(hdr)) in loadfile_elf()
505 if ((size_t)gzread(fp, buf, ct) != ct) { in mread()
532 if ((size_t)gzread(fp, buf, ct) != ct) { in mread()
677 if ((size_t)gzread(fp, phdr, sz) != sz) { in elf64_exec()
767 if ((size_t)gzread(fp, shp, sz) != sz) { in elf64_exec()
783 if ((size_t)gzread(fp, shstr, shstrsz) != shstrsz) { in elf64_exec()
895 if ((size_t)gzread(fp, phdr, sz) != sz) { in elf32_exec()
985 if ((size_t)gzread(fp, shp, sz) != sz) { in elf32_exec()
1001 if ((size_t)gzread(fp, shstr, shstrsz) != shstrsz) { in elf32_exec()
/openbsd/usr.bin/grep/
H A Dbinary.c75 if ((m = gzread(f, buf, BUFSIZ)) <= 0) in gzbin_file()
/openbsd/lib/libz/
H A DMakefile6 gzread.c gzwrite.c infback.c inffast.c inflate.c inftrees.c \
H A DChangeLog55 - Avoid some conversion warnings in gzread.c and gzwrite.c
327 - Correct spelling error in gzread.c
367 - Fix bug in gzread.c when end-of-file is reached
489 - Match type exactly in gz_load() invocation in gzread.c
584 - Avoid void * arithmetic in gzread.c and gzwrite.c
595 - Add checks on len in gzread() and gzwrite()
612 - Fix premature EOF from gzread() in gzio.c [Brown]
685 - Fix EOF detection in transparent gzread() [Maier]
1456 - allow gzread on concatenated .gz files
1483 - fix error checking in gzread
[all …]
H A Dzconf.h91 # define gzread z_gzread macro
H A Dgzread.c345 int ZEXPORT gzread(gzFile file, voidp buf, unsigned len) { in gzread() function
H A Dzlib.h1398 ZEXTERN int ZEXPORT gzread(gzFile file, voidp buf, unsigned len);
/openbsd/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DTarzip.pm105 while $gz->gzread($buffer) > 0 ;
152 while ($gz->gzread($buffer) > 0 ) {
228 my $byteread = $gz->gzread($$ref,$length);# 30eaf79e8b446ef52464b5422da328a8
/openbsd/usr.sbin/smtpd/
H A Dcompress_gzip.c154 while ((r = gzread(gzf, obuf, sizeof(obuf))) > 0) { in uncompress_gzip_file()
/openbsd/regress/lib/libz/
H A Dminigzip.c230 static int gzread(gzFile gz, void *buf, unsigned len) { in gzread() function
375 len = gzread(in, buf, sizeof(buf)); in gz_uncompress()
H A Dexample.c117 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) { in test_gzio()
/openbsd/sys/lib/libz/
H A Dzconf.h91 # define gzread z_gzread macro
H A Dzlib.h1398 ZEXTERN int ZEXPORT gzread(gzFile file, voidp buf, unsigned len);
/openbsd/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/
H A Dzconf.h90 # define gzread z_gzread macro
H A Dzlib.h1392 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
/openbsd/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/t/compress/
H A DCompTestUtils.pm239 while $fil->gzread($line) > 0;
/openbsd/gnu/usr.bin/perl/cpan/IO-Compress/t/compress/
H A DCompTestUtils.pm198 while $fil->gzread($line) > 0;
/openbsd/gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/t/compress/
H A DCompTestUtils.pm198 while $fil->gzread($line) > 0;
/openbsd/gnu/usr.bin/perl/cpan/IO-Compress/lib/Compress/
H A DZlib.pm157 sub Compress::Zlib::gzFile::gzread
/openbsd/usr.bin/mandoc/
H A Dread.c511 gzread(gz, fb->buf + (int)off, fb->sz - off) : in read_whole_file()

12