| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer, | public, | allocatable | :: | shape(:) | |||
| integer, | public | :: | type_kind | ||||
| type(c_ptr), | public | :: | base_address | = | C_NULL_PTR |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(inout) | :: | this | |||
| integer, | intent(out), | optional | :: | rc |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(in), | target | :: | this |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(in) | :: | this | |||
| class(AbstractDataReference), | intent(inout) | :: | to | |||
| integer, | intent(out), | optional | :: | rc |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(inout) | :: | this | |||
| integer, | intent(out), | optional | :: | rc |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(inout) | :: | this | |||
| integer, | intent(in) | :: | buffer(:) | |||
| integer, | intent(out), | optional | :: | rc |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(inout) | :: | this | |||
| integer, | intent(in) | :: | buffer(:) | |||
| integer, | intent(out), | optional | :: | rc |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(in) | :: | a | |||
| class(AbstractDataReference), | intent(in) | :: | b |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(inout) | :: | this | |||
| integer, | intent(out), | optional | :: | rc |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(in), | target | :: | this | ||
| type(c_ptr), | intent(in) | :: | offset_address | |||
| integer, | intent(in) | :: | global_shape(:) | |||
| integer, | intent(in), | optional | :: | offset_start(:) | ||
| integer, | intent(out), | optional | :: | rc |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(in) | :: | this |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(in) | :: | this |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(in) | :: | a | |||
| class(AbstractDataReference), | intent(in) | :: | b |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(in) | :: | this | |||
| integer, | allocatable | :: | buffer(:) | |||
| integer, | intent(out), | optional | :: | rc |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(AbstractDataReference), | intent(in) | :: | this | |||
| integer, | allocatable | :: | buffer(:) | |||
| integer, | intent(out), | optional | :: | rc |
type,abstract :: AbstractDataReference type (c_ptr) :: base_address = C_NULL_PTR integer, allocatable :: shape(:) integer :: type_kind contains procedure :: fetch_data procedure(get_length), deferred :: get_length procedure(serialize), deferred :: serialize procedure(deserialize), deferred :: deserialize procedure :: get_length_base procedure :: serialize_base procedure :: deserialize_base procedure :: equal procedure :: allocate procedure :: deallocate procedure :: convert_addr generic :: operator(==) => equal procedure :: fence procedure :: copy_data_to end type AbstractDataReference