Lines Matching full:work
23 whose indices are 0..2^bits-1. work is a writable array of at least
24 lens shorts, which is used as a work area. type is the type of code
34 unsigned short FAR *work) in inflate_table() argument
92 table. The sorted table is work[], with that space being provided by in inflate_table()
143 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table()
179 base = extra = work; /* dummy value--not used */ in inflate_table()
213 if (work[sym] + 1U < match) { in inflate_table()
215 here.val = work[sym]; in inflate_table()
217 else if (work[sym] >= match) { in inflate_table()
218 here.op = (unsigned char)(extra[work[sym] - match]); in inflate_table()
219 here.val = base[work[sym] - match]; in inflate_table()
250 len = lens[work[sym]]; in inflate_table()