• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/

Lines Matching defs:this

204    fixed code decoding.  Normally this returns fixed tables from inffixed.h.
205 If BUILDFIXED is defined, then instead this routine builds the tables the
243 /* do this just once */
262 can simply call makefixed to do this:
286 puts(" /* WARNING: this file should *not* be used by applications.");
287 puts(" It is part of the implementation of this library and is");
319 when a window is already in use, or when output has been written during this
550 In this implementation, the flush parameter of inflate() only affects the
574 code this; /* current decoding table entry */
899 this = state->lencode[BITS(state->lenbits)];
900 if ((unsigned)(this.bits) <= bits) break;
903 if (this.val < 16) {
904 NEEDBITS(this.bits);
905 DROPBITS(this.bits);
906 state->lens[state->have++] = this.val;
909 if (this.val == 16) {
910 NEEDBITS(this.bits + 2);
911 DROPBITS(this.bits);
921 else if (this.val == 17) {
922 NEEDBITS(this.bits + 3);
923 DROPBITS(this.bits);
929 NEEDBITS(this.bits + 7);
930 DROPBITS(this.bits);
979 this = state->lencode[BITS(state->lenbits)];
980 if ((unsigned)(this.bits) <= bits) break;
983 if (this.op && (this.op & 0xf0) == 0) {
984 last = this;
986 this = state->lencode[last.val +
988 if ((unsigned)(last.bits + this.bits) <= bits) break;
993 DROPBITS(this.bits);
994 state->length = (unsigned)this.val;
995 if ((int)(this.op) == 0) {
996 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
998 "inflate: literal 0x%02x\n", this.val));
1002 if (this.op & 32) {
1007 if (this.op & 64) {
1012 state->extra = (unsigned)(this.op) & 15;
1026 this = state->distcode[BITS(state->distbits)];
1027 if ((unsigned)(this.bits) <= bits) break;
1030 if ((this.op & 0xf0) == 0) {
1031 last = this;
1033 this = state->distcode[last.val +
1035 if ((unsigned)(last.bits + this.bits) <= bits) break;
1040 DROPBITS(this.bits);
1041 if (this.op & 64) {
1046 state->offset = (unsigned)this.val;
1047 state->extra = (unsigned)(this.op) & 15;