functor
  (Default_offsetmap : sig val default_offsetmap : Base.t -> LOffset.t end->
  sig
    type t
    val ty : t Type.t
    val name : string
    val descr : t Descr.t
    val packed_descr : Structural_descr.pack
    val reprs : t list
    val equal : t -> t -> bool
    val compare : t -> t -> int
    val hash : t -> int
    val pretty_code : Format.formatter -> t -> unit
    val internal_pretty_code :
      Type.precedence -> Format.formatter -> t -> unit
    val pretty : Format.formatter -> t -> unit
    val varname : t -> string
    val mem_project : (Project_skeleton.t -> bool) -> t -> bool
    val copy : t -> t
    type widen_hint =
        bool * Base.Set.t *
        (Base.t -> Lmap_whole.Make_LOffset.widen_hint_offsetmap)
    type instanciation = Locations.Location_Bytes.t Base.Map.t
    val inject : Base.t -> LOffset.t -> t
    val pretty_without_null : Format.formatter -> t -> unit
    val pretty_filter : Format.formatter -> t -> Locations.Zone.t -> unit
    val add_binding :
      with_alarms:CilE.warn_mode ->
      exact:bool -> t -> Locations.location -> Lmap_whole.Make_LOffset.y -> t
    val find :
      with_alarms:CilE.warn_mode ->
      t -> Locations.location -> Lmap_whole.Make_LOffset.y
    val concerned_bindings :
      t -> Locations.location -> Lmap_whole.Make_LOffset.y list
    val join : t -> t -> t
    val is_included : t -> t -> bool
    val is_included_actual_generic :
      Locations.Zone.t ->
      t -> t -> Lmap_whole.Make_LOffset.Make.instanciation
    val empty : t
    val is_empty : t -> bool
    val bottom : t
    val is_reachable : t -> bool
    val widen : Lmap_whole.Make_LOffset.Make.widen_hint -> t -> t -> bool * t
    val filter_base : (Base.t -> bool) -> t -> t
    val find_base : Base.t -> t -> LOffset.t
    val copy_paste : Locations.location -> Locations.location -> t -> t
    val paste_offsetmap :
      LOffset.t ->
      Locations.Location_Bits.t ->
      Abstract_interp.Int.t -> Abstract_interp.Int.t -> t -> t
    val copy_offsetmap : Locations.location -> t -> LOffset.t option
    val compute_actual_final_from_generic :
      t ->
      t ->
      Locations.Zone.t -> Lmap_whole.Make_LOffset.Make.instanciation -> t
    val is_included_by_location_enum : t -> t -> Locations.Zone.t -> bool
    val fold :
      size:Abstract_interp.Int.t ->
      (Locations.location -> Lmap_whole.Make_LOffset.y -> '-> 'a) ->
      t -> '-> 'a
    val fold_single_bindings :
      size:Abstract_interp.Int.t ->
      (Locations.location -> Lmap_whole.Make_LOffset.y -> '-> 'a) ->
      t -> '-> 'a
    val fold_base : (Base.t -> '-> 'a) -> t -> '-> 'a
    val find_offsetmap_for_location :
      Locations.Location_Bits.t -> t -> LOffset.t
    val add_whole : Locations.location -> Lmap_whole.Make_LOffset.y -> t -> t
    val remove_whole : Locations.location -> t -> t
    val reciprocal_image :
      Base.t -> t -> Locations.Zone.t * Locations.Location_Bits.t
    val create_initial :
      base:Base.t ->
      v:Lmap_whole.Make_LOffset.y ->
      modu:Abstract_interp.Int.t -> state:t -> t
    val cached_fold :
      f:(Base.t -> LOffset.t -> 'a) ->
      cache:string * int ->
      temporary:bool -> joiner:('-> '-> 'a) -> empty:'-> t -> 'a
    val cached_map :
      f:(Base.t -> LOffset.t -> LOffset.t) ->
      cache:string * int -> temporary:bool -> t -> t
  end