Lines Matching refs:table
543 struct table { struct
547 unsigned *table; argument
563 static void table_offset_add(struct table *t, struct offset *offset) in table_offset_add() argument
568 static void table_init(struct table *t) in table_init()
573 t->table = NULL; in table_init()
576 static void table_print(struct table *t) in table_print()
594 printf("0x%08X,", t->table[id++]); in table_print()
601 static int table_build(struct table *t) in table_build()
607 t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry); in table_build()
608 if (t->table == NULL) in table_build()
610 memset(t->table, 0xff, sizeof(unsigned) * t->nentry); in table_build()
615 t->table[i] ^= m; in table_build()
621 static int parser_auth(struct table *t, const char *filename) in parser_auth()
699 struct table t; in main()