Lines Matching defs:table
111 struct table {
115 unsigned *table;
131 static void table_offset_add(struct table *t, struct offset *offset)
136 static void table_init(struct table *t)
141 t->table = NULL;
144 static void table_print(struct table *t)
162 printf("0x%08X,", t->table[id++]);
169 static int table_build(struct table *t)
175 t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry);
176 if (t->table == NULL)
178 memset(t->table, 0xff, sizeof(unsigned) * t->nentry);
183 t->table[i] ^= m;
189 static int parser_auth(struct table *t, const char *filename)
267 struct table t;