dbcsr_memtype_type_p Derived Type

type, private :: dbcsr_memtype_type_p


Components

Type Visibility Attributes Name Initial
type(dbcsr_memtype_type), public, POINTER :: p => Null()
integer(kind=int_4), public, DIMENSION(64) :: padding

Source Code

   TYPE dbcsr_memtype_type_p
      TYPE(dbcsr_memtype_type), POINTER :: p => Null()
      ! ensure that array-elements are on different cache lines
      INTEGER(kind=int_4), DIMENSION(64)    :: padding
   END TYPE dbcsr_memtype_type_p