Lines Matching refs:r
347 struct huft r; /* table entry for structure assignment */ in huft_build() local
507 r.b = (uch)l; /* bits to dump before this table */ in huft_build()
508 r.e = (uch)(16 + j); /* bits in this table */ in huft_build()
509 r.v.t = q; /* pointer to this table */ in huft_build()
511 u[h-1][j] = r; /* connect to last table */ in huft_build()
518 r.b = (uch)(k - w); in huft_build()
520 r.e = 99; /* out of values--invalid code */ in huft_build()
523 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build()
524 r.v.n = (ush)(*p); /* simple code is just the value */ in huft_build()
529 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ in huft_build()
530 r.v.n = d[*p++ - s]; in huft_build()
537 q[j] = r; in huft_build()
1089 int r; /* result code */ in inflate() local
1105 r = inflate_block(&e); in inflate()
1106 if (r) in inflate()
1107 return r; in inflate()