Lines Matching defs:CPartition
53 struct CPartition struct
55 Byte Type[16];
56 Byte Id[16];
57 UInt64 FirstLba;
58 UInt64 LastLba;
59 UInt64 Flags;
60 const char *Ext; // detected later
61 Byte Name[kNameLen * 2];
63 bool IsUnused() const in IsUnused()
71 UInt64 GetSize(unsigned sectorSizeLog) const { return (LastLba - FirstLba + 1) << sectorSizeLog; } in GetSize()
72 UInt64 GetPos(unsigned sectorSizeLog) const { return FirstLba << sectorSizeLog; } in GetPos()
73 UInt64 GetEnd(unsigned sectorSizeLog) const { return (LastLba + 1) << sectorSizeLog; } in GetEnd()
75 void Parse(const Byte *p) in Parse()