Lines Matching refs:sym
36 unsigned sym; /* index of code symbols */ in inflate_table() local
104 for (sym = 0; sym < codes; sym++) in inflate_table()
105 count[lens[sym]]++; in inflate_table()
141 for (sym = 0; sym < codes; sym++) in inflate_table()
142 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table()
194 sym = 0; /* starting code symbol */ in inflate_table()
212 if (work[sym] + 1U < match) { in inflate_table()
214 here.val = work[sym]; in inflate_table()
216 else if (work[sym] >= match) { in inflate_table()
217 here.op = (unsigned char)(extra[work[sym] - match]); in inflate_table()
218 here.val = base[work[sym] - match]; in inflate_table()
246 sym++; in inflate_table()
249 len = lens[work[sym]]; in inflate_table()