HomeSort by: relevance | last modified time | path
    Searched refs:deflate (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/sys/modules/ppp_deflate/
Makefile 8 SRCS= ppp-deflate.c
  /src/sys/modules/swcrypto/
Makefile 9 SRCS= aesxcbcmac.c cryptosoft.c deflate.c gmac.c
  /src/sys/lib/libz/
Makefile 13 LIBZSRCS= adler32.c compress.c deflate.c infback.c inffast.c \
15 LIBZHDRS= deflate.h inffast.h inffixed.h inflate.h inftrees.h \
  /src/common/dist/zlib/watcom/
watcom_l.mak 7 C_SOURCE = adler32.c compress.c crc32.c deflate.c &
12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
30 wlib -b -c $(ZLIB_LIB) -+deflate.obj -+infback.obj
watcom_f.mak 7 C_SOURCE = adler32.c compress.c crc32.c deflate.c &
12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
30 wlib -b -c $(ZLIB_LIB) -+deflate.obj -+infback.obj
  /src/common/dist/zlib/contrib/delphi/
zlibd32.mak 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
60 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
ZLib.pas 203 {$L deflate.obj}
240 // deflate compresses data
243 function deflate(var strm: TZStreamRec; flush: Integer): Integer; external; function
304 while CCheck(deflate(strm, Z_FINISH)) <> Z_STREAM_END do
424 while (CCheck(deflate(FZRec, Z_FINISH)) <> Z_STREAM_END)
451 CCheck(deflate(FZRec, 0));
  /src/common/dist/zlib/contrib/pascal/
zlibd32.mak 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
60 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
example.pas 181 * Test deflate with small buffers
206 err := deflate(c_stream, Z_NO_FLUSH);
207 CHECK_ERR(err, 'deflate');
214 err := deflate(c_stream, Z_FINISH);
217 CHECK_ERR(err, 'deflate');
269 * Test deflate with large buffers and dynamic change of compression level
292 err := deflate(c_stream, Z_NO_FLUSH);
293 CHECK_ERR(err, 'deflate');
295 EXIT_ERR('deflate not greedy');
301 err := deflate(c_stream, Z_NO_FLUSH)
    [all...]
zlibpas.pas 107 function deflate(var strm: z_stream; flush: Integer): Integer; function
179 {$L deflate.obj}
195 function deflate; external; function
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
Deflater.cs 16 /// Implements a data compressor, using the deflate algorithm in the ZLib dll
25 private static extern int deflate(ref ZStream sz, int flush); method in class:DotZLib.Deflater
69 err = deflate(ref _ztream, (int)FlushTypes.None);
74 err = deflate(ref _ztream, (int)FlushTypes.None);
91 err = deflate(ref _ztream, (int)FlushTypes.Finish);
101 /// Closes the internal zlib deflate stream
  /src/sys/rump/dev/lib/libopencrypto/
Makefile 28 SRCS+= deflate.c
  /src/common/dist/zlib/test/
example.c 164 * Test deflate() with small buffers
183 err = deflate(&c_stream, Z_NO_FLUSH);
184 CHECK_ERR(err, "deflate");
189 err = deflate(&c_stream, Z_FINISH);
191 CHECK_ERR(err, "deflate");
238 * Test deflate() with large buffers and dynamic change of compression level
260 err = deflate(&c_stream, Z_NO_FLUSH);
261 CHECK_ERR(err, "deflate");
263 fprintf(stderr, "deflate not greedy\n");
271 err = deflate(&c_stream, Z_NO_FLUSH)
    [all...]
  /src/common/dist/zlib/
Makefile.in 56 OBJZ = adler32.o crc32.o deflate.o infback.o inffast.o inflate.o inftrees.o trees.o zutil.o
60 PIC_OBJZ = adler32.lo crc32.lo deflate.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo zutil.lo
161 deflate.o: $(SRCDIR)deflate.c
162 $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)deflate.c
211 deflate.lo: $(SRCDIR)deflate.c
213 $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/deflate.o $(SRCDIR)deflate.c
214 -@mv objs/deflate.o $
    [all...]
compress.c 55 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
make_vms.com 185 $ CALL MAKE deflate.OBJ "CC ''CCOPT' deflate" -
186 deflate.c deflate.h zutil.h zlib.h zconf.h
204 trees.c deflate.h zutil.h zlib.h zconf.h
431 deflate.obj, trees.obj, zutil.obj, inflate.obj, \
459 deflate.obj : deflate.c deflate.h zutil.h zlib.h zconf.h
469 trees.obj : trees.c deflate.h zutil.h zlib.h zconf.
    [all...]
  /src/lib/libz/
Makefile 15 SRCS= adler32.c compress.c crc32.c deflate.c infback.c inffast.c \
  /src/common/dist/zlib/examples/
fitblk.c 19 enough deflate blocks to produce output to fill the requested
21 below). The last deflate block may go quite a bit past that, but
24 buffer. The deflate process is terminated after that amount of
26 The last deflate block of the result will be of a comparable size
27 to the final product, so that the header for that deflate block and
44 the last deflate block compressing more efficiently with a smaller
47 out the requested size, and small enough so that the final deflate
48 block of the second pass will be close in size to the final deflate
71 input reached; return last deflate() return value, or Z_ERRNO if
86 ret = deflate(def, flush)
    [all...]
zpipe.c 1 /* zpipe.c: example of proper use of zlib's inflate() and deflate()
44 /* allocate deflate state */
62 /* run deflate() on input until output buffer not full, finish
67 ret = deflate(&strm, flush); /* no bad return value */
88 allocated for processing, Z_DATA_ERROR if the deflate data is
110 /* decompress until deflate stream ends or end of file */
165 fputs("invalid or incomplete deflate data\n", stderr);
  /src/distrib/utils/zcat/
zcat.c 119 * XXX: hacks to keep gzio.c from pulling in deflate stuff
130 int deflate(z_streamp strm, int flush) function in typeref:typename:int
  /src/sys/opencrypto/
deflate.c 1 /* $NetBSD: deflate.c,v 1.23 2017/05/17 06:33:04 knakahara Exp $ */
2 /* $FreeBSD: src/sys/opencrypto/deflate.c,v 1.1.2.1 2002/11/21 23:34:23 sam Exp $ */
3 /* $OpenBSD: deflate.c,v 1.3 2001/08/20 02:45:22 hugh Exp $ */
33 * This file contains a wrapper around the deflate algo compression
38 __KERNEL_RCSID(0, "$NetBSD: deflate.c,v 1.23 2017/05/17 06:33:04 knakahara Exp $");
47 #include <opencrypto/deflate.h>
60 * This function takes a block of data and (de)compress it using the deflate
128 deflate(&zbuf, Z_FINISH);
321 DPRINTF("pre: %s in:%u out:%u\n", decomp ? "deflate()" : "inflate()",
324 deflate(&zbuf, Z_FINISH)
    [all...]
  /src/sys/arch/mmeye/stand/boot/
Makefile 82 ${HOST_SH} $(.CURDIR)/deflate.sh ${.TARGET}.bin
  /src/tests/net/ipsec/
t_ipsec_tunnel_ipcomp.sh 201 pktsize=$(($(get_minlen deflate) - 8 - 20 - 1))
210 pktsize=$(($(get_minlen deflate) - 8 - 20))
329 pktsize=$(($(get_minlen deflate) - 8 - 40 - 1))
338 pktsize=$(($(get_minlen deflate) - 8 - 40))
  /src/sys/net/
zlib.h 30 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
66 # define deflate z_deflate macro
164 /* The memory requirements for deflate are (in bytes):
425 /* Allowed flush values; see deflate() below for details */
457 /* The deflate compression method (the only one supported in this version) */
492 perform any compression: this will be done by deflate().
496 ZEXTERN int ZEXPORT deflate(z_streamp, int);
498 deflate compresses as much data as possible, and stops when the input
503 The detailed semantics are as follows. deflate performs one or both of the
509 processing will resume at this point for the next call of deflate()
    [all...]
  /src/sys/dev/pci/
viomb.c 103 static int deflate(struct viomb_softc *);
177 "deflate") != 0)
380 * Deflate: free previously allocated memory.
383 deflate(struct viomb_softc *sc) function in typeref:typename:int
412 printf("%s: deflate enqueue failed.\n",
422 printf("%s: deflate enqueue failed.\n",
468 printf("%s: deflate dequeue failed, errno %d\n",
494 * Kthread: sleeps, eventually inflate and deflate.
515 r = deflate(sc);

Completed in 19 milliseconds

1 2