Lines Matching defs:dl
59 struct disklabel *dl = (struct disklabel *)&p[1];
62 || (u_char *)dl - bblk == 7168
64 && dl->d_npartitions <= MAXPARTITIONS
65 && dl->d_magic2 == DISKMAGIC
66 && dl->d_magic == DISKMAGIC
67 && dkcksum(dl) == 0
69 memcpy(dlp, dl, sizeof(*dlp));
82 dkcksum(struct disklabel *dl)
86 start = (u_short *)dl;
87 end = (u_short *)&dl->d_partitions[dl->d_npartitions];