Home | History | Annotate | Download | only in pci

Lines Matching refs:tablesize

229 	uint16_t tablesize;
246 tablesize = *(uint16_t *)(p + 6);
249 for (i = 0; i < tablesize; i++)
255 tablesize, (tablesize - 32) / 16);
262 if (tablesize < 32 || (tablesize % 16) != 0) {
277 pcibios_pir_table = malloc(tablesize - 32, M_DEVBUF,
279 memcpy(pcibios_pir_table, p + 32, tablesize - 32);
280 pcibios_pir_table_nentries = (tablesize - 32) / 16;