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