Lines Matching defs:table
148 make_table(State_t* state, int nchar, ui1* bitlen, int tablebits, ui2* table, ui4 tablesize)
192 (*state->codex->disc->errorf)(NiL, state->codex->disc, 2, "%s: invalid compression table", state->codex->meth->name);
196 /* shift data for make table. */
211 table[i] = 0;
213 /* create table and tree */
227 (*state->codex->disc->errorf)(NiL, state->codex->disc, 2, "%s: compression table overflow", state->codex->meth->name);
231 /* code in table */
234 table[i++] = j;
238 /* code not in table */
240 p = &table[i >> m];
276 (*state->codex->disc->errorf)(NiL, state->codex->disc, 2, "%s: invalid compression table", state->codex->meth->name);
293 while (i != k) table[i++] = 0;
305 (*state->codex->disc->errorf)(NiL, state->codex->disc, 2, "%s: compression table overflow", state->codex->meth->name);
308 for (i = start[len]; i < nextcode; i++) table[i] = ch;
311 p = &table[k >> jutbits];