Searched defs:this (Results 1 - 5 of 5) sorted by relevance

/ast/src/lib/libz/
H A Dinffast.c39 inflate execution time is spent in this routine.
91 code this; /* retrieved table entry */ local
128 this = lcode[hold & lmask];
130 op = (unsigned)(this.bits);
133 op = (unsigned)(this.op);
135 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
137 "inflate: literal 0x%02x\n", this.val));
138 PUP(out) = (unsigned char)(this.val);
141 len = (unsigned)(this
[all...]
H A Dinfback.c65 fixed code decoding. Normally this returns fixed tables from inffixed.h.
66 If BUILDFIXED is defined, then instead this routine builds the tables the
104 /* do this just once */
256 code this; /* current decoding table entry */ local
392 this = state->lencode[BITS(state->lenbits)];
393 if ((unsigned)(this.bits) <= bits) break;
396 if (this.val < 16) {
397 NEEDBITS(this.bits);
398 DROPBITS(this.bits);
399 state->lens[state->have++] = this
[all...]
H A Dinftrees.c16 include such an acknowledgment, I would appreciate that you keep this
33 /* __MVS__ complains hard about this one K&R prototype -- go figure */
59 code this; /* table entry for duplication */ local
95 lens[] are in the range 0..MAXBITS. The caller must assure this.
97 symbol does not occur in this code.
124 this.op = (unsigned char)64; /* invalid code marker */
125 this.bits = (unsigned char)1;
126 this.val = (unsigned short)0;
127 *(*table)++ = this; /* make a table to force an error */
128 *(*table)++ = this;
[all...]
H A Dinflate.c197 fixed code decoding. Normally this returns fixed tables from inffixed.h.
198 If BUILDFIXED is defined, then instead this routine builds the tables the
236 /* do this just once */
255 can simply call makefixed to do this:
279 puts(" /* WARNING: this file should *not* be used by applications.");
280 puts(" It is part of the implementation of this library and is");
312 when a window is already in use, or when output has been written during this
543 In this implementation, the flush parameter of inflate() only affects the
567 code this; /* current decoding table entry */ local
879 this
[all...]
/ast/src/cmd/INIT/
H A Dratz.c151 arising from the use of this software.
153 Permission is granted to anyone to use this software for any purpose,
157 1. The origin of this software must not be misrepresented; you must not
158 claim that you wrote the original software. If you use this software
289 Of course this will generally degrade compression (there's no free lunch).
571 /* The deflate compression method (the only one supported in this version) */
881 * Since MSDOS is not a preemptive multitasking OS, this table is not
1305 z_streamp strm; /* pointer back to this zlib stream */
1326 * bytes. With this organization, matches are limited to a distance of
1327 * wSize-MAX_MATCH bytes, but this ensure
1726 code this; /* table entry for duplication */ local
2087 code this; /* retrieved table entry */ local
2786 code this; /* current decoding table entry */ local
[all...]

Completed in 17 milliseconds