Lines Matching refs:table
77 #define TABLE_ON_PAGE(page, table, size) (ON_SAME_PAGE(page, table) && \ argument
78 ON_SAME_PAGE(page, table + size))
133 static int sfi_verify_table(struct sfi_table_header *table) in sfi_verify_table() argument
137 u8 *puchar = (u8 *)table; in sfi_verify_table()
138 u32 length = table->len; in sfi_verify_table()
151 table->csum, table->csum - checksum); in sfi_verify_table()
283 struct sfi_table_header *table = NULL; in sfi_table_parse() local
294 table = sfi_get_table(&key); in sfi_table_parse()
295 if (!table) in sfi_table_parse()
298 ret = handler(table); in sfi_table_parse()
299 sfi_put_table(table); in sfi_table_parse()