You can search for identifiers within the package.
in-package search v0.2.0
type t = {
cylinders : int;
heads : int;
sectors : int;
}
Represents a sector address using the cylinder-heads-sectors addressing scheme.
val unmarshal : Cstruct.t -> (t, string) Stdlib.result
val of_lba_size : int64 -> (t, string) Stdlib.result
For LBA addressable disks of < 8GiB, synthesise a plausible geometry given a total number of sectors
val to_chs : t -> int64 -> t
Given a geometry and an LBA offset, compute the CHS of the offset