Home
last modified time | relevance | path

Searched refs:ptable (Results 1 – 6 of 6) sorted by relevance

/freebsd/stand/common/
H A Dpart.h30 struct ptable;
68 struct ptable *ptable_open(void *dev, uint64_t sectors, uint16_t sectorsize,
70 void ptable_close(struct ptable *table);
71 enum ptable_type ptable_gettype(const struct ptable *table);
72 int ptable_getsize(const struct ptable *table, uint64_t *sizep);
74 int ptable_getpart(const struct ptable *table, struct ptable_entry *part,
76 int ptable_getbestpart(const struct ptable *table, struct ptable_entry *part);
78 int ptable_iterate(const struct ptable *table, void *arg,
H A Dpart.c73 struct ptable { struct
227 static struct ptable *
228 ptable_gptread(struct ptable *table, void *dev, diskread_t dread) in ptable_gptread()
379 static struct ptable *
380 ptable_ebrread(struct ptable *table, void *dev, diskread_t dread) in ptable_ebrread()
455 static struct ptable *
456 ptable_bsdread(struct ptable *table, void *dev, diskread_t dread) in ptable_bsdread()
519 static struct ptable *
520 ptable_iso9660read(struct ptable *table, void *dev, diskread_t dread) in ptable_iso9660read()
556 struct ptable *
[all …]
H A Ddisk.c45 struct ptable *table;
109 struct ptable *table; in ptable_print()
232 struct ptable *table; in disk_open()
/freebsd/sys/fs/cd9660/
H A Dcd9660_rrip.c458 RRIP_TABLE *ptable; in cd9660_rrip_loop() local
493 for (ptable = table; ptable->func; ptable++) { in cd9660_rrip_loop()
494 if (*phead->type == *ptable->type in cd9660_rrip_loop()
495 && phead->type[1] == ptable->type[1]) { in cd9660_rrip_loop()
496 result |= ptable->func(phead,ana); in cd9660_rrip_loop()
543 for (ptable = table; ptable->func2; ptable++) in cd9660_rrip_loop()
544 if (!(ptable->result&result)) in cd9660_rrip_loop()
545 ptable->func2(isodir,ana); in cd9660_rrip_loop()
/freebsd/sys/arm64/arm64/
H A Dgicv3_its.c1451 struct its_ptable *ptable; in its_device_alloc() local
1471 ptable = &sc->sc_its_ptab[sc->sc_dev_table_idx]; in its_device_alloc()
1473 if (!ptable->ptab_indirect) { in its_device_alloc()
1474 if (devid >= ptable->ptab_l1_nidents) { in its_device_alloc()
1479 ptable->ptab_l1_nidents); in its_device_alloc()
1488 index = devid / ptable->ptab_l2_nidents; in its_device_alloc()
1489 if (index >= ptable->ptab_l1_nidents) { in its_device_alloc()
1493 __func__, index, ptable->ptab_l1_nidents); in its_device_alloc()
1498 table = (uint64_t *)ptable->ptab_vaddr; in its_device_alloc()
1504 if ((ptable->ptab_share & GITS_BASER_SHARE_MASK) == GITS_BASER_SHARE_NS) in its_device_alloc()
[all …]
/freebsd/stand/libsa/zfs/
H A Dzfs.c755 struct ptable *table; in zfs_probe_partition()
1471 struct ptable *table; in zfs_probe_dev()