Lines Matching defs:table
119 if (zip->table != 0)
120 free(zip->table);
298 unsigned short *table;
364 /* Allocate hash table */
367 table = zip->table = calloc(tablelen, sizeof(unsigned short));
368 if (table == 0)
376 table[i] = ZIP_ENDCHAIN;
469 * Finally we can add the entry to the hash table
472 zc->next = table[hsh];
473 table[hsh] = count;
488 free(table);
489 zip->table = 0;
755 int idx = zip->table[hsh % zip->tablelen];