Symbol: gpt_ent
lib/libefivar/efivar-dp-xlate.c
436
struct gpt_ent *ent;
lib/libefivar/efivar-dp-xlate.c
75
struct gpt_ent *ent;
sbin/gpt/add.c
63
struct gpt_ent *ent;
sbin/gpt/boot.c
64
struct gpt_ent *ent;
sbin/gpt/create.c
138
if ((uint64_t)(blocks - 1) * secsz > parts * sizeof(struct gpt_ent)) {
sbin/gpt/create.c
139
blocks = (parts * sizeof(struct gpt_ent)) / secsz;
sbin/gpt/create.c
140
if ((parts * sizeof(struct gpt_ent)) % secsz)
sbin/gpt/create.c
169
hdr->hdr_entries = htole32((blocks * secsz) / sizeof(struct gpt_ent));
sbin/gpt/create.c
172
hdr->hdr_entsz = htole32(sizeof(struct gpt_ent));
sbin/gpt/create.c
82
struct gpt_ent *ent;
sbin/gpt/expand.c
91
struct gpt_ent *ent, *last_ent;
sbin/gpt/gpt.c
537
struct gpt_ent *ent;
sbin/gpt/label.c
67
struct gpt_ent *ent;
sbin/gpt/migrate.c
137
static struct gpt_ent*
sbin/gpt/migrate.c
139
struct gpt_ent *ent)
sbin/gpt/migrate.c
194
static struct gpt_ent*
sbin/gpt/migrate.c
196
struct gpt_ent *ent)
sbin/gpt/migrate.c
241
struct gpt_ent *ent;
sbin/gpt/migrate.c
274
if ((uint64_t)(blocks - 1) * secsz > parts * sizeof(struct gpt_ent)) {
sbin/gpt/migrate.c
275
blocks = (parts * sizeof(struct gpt_ent)) / secsz;
sbin/gpt/migrate.c
276
if ((parts * sizeof(struct gpt_ent)) % secsz)
sbin/gpt/migrate.c
334
hdr->hdr_entries = htole32((blocks * secsz) / sizeof(struct gpt_ent));
sbin/gpt/migrate.c
337
hdr->hdr_entsz = htole32(sizeof(struct gpt_ent));
sbin/gpt/remove.c
64
struct gpt_ent *ent;
sbin/gpt/show.c
82
struct gpt_ent *ent;
sys/kern/subr_diskgpt.c
137
entsz < sizeof(struct gpt_ent) || (entsz & 7) ||
sys/kern/subr_diskgpt.c
181
struct gpt_ent sent;
sys/kern/subr_diskgpt.c
238
const struct gpt_ent *sent)
sys/kern/subr_diskgpt.c
53
struct diskslice *sp, const struct gpt_ent *sent);
sys/kern/subr_diskgpt.c
71
struct gpt_ent *ent;
sys/sys/gpt.h
80
CTASSERT(sizeof(struct gpt_ent) == 128);