allocate array More...
Public Member Functions | |
subroutine | mpallocdvec (array, length, text) |
allocate (1D) double precision array | |
subroutine | mpallocfvec (array, length, text) |
allocate (1D) single precision array | |
subroutine | mpallocivec (array, length, text) |
allocate (1D) integer array | |
subroutine | mpallocfarr (array, rows, cols, text) |
allocate (2D) single precision array | |
subroutine | mpallociarr (array, rows, cols, text) |
allocate (2D) integer array | |
subroutine | mpalloclarr (array, rows, cols, text) |
allocate (2D) large integer array | |
subroutine | mpalloclist (array, length, text) |
allocate (1D) list item array | |
subroutine | mpalloccvec (array, length, text) |
allocate (1D) character array |
allocate array
Definition at line 19 of file mpdalc.f90.
subroutine mpdalc::mpalloc::mpalloccvec | ( | CHARACTER, dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) character array
Definition at line 112 of file mpdalc.f90.
subroutine mpdalc::mpalloc::mpallocdvec | ( | DOUBLE PRECISION, dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) double precision array
Definition at line 32 of file mpdalc.f90.
subroutine mpdalc::mpalloc::mpallocfarr | ( | REAL, dimension(:,:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | rows, | ||
INTEGER(kind=large), intent(in) | cols, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (2D) single precision array
Definition at line 65 of file mpdalc.f90.
subroutine mpdalc::mpalloc::mpallocfvec | ( | REAL, dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) single precision array
Definition at line 43 of file mpdalc.f90.
subroutine mpdalc::mpalloc::mpallociarr | ( | INTEGER, dimension(:,:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | rows, | ||
INTEGER(kind=large), intent(in) | cols, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (2D) integer array
Definition at line 77 of file mpdalc.f90.
subroutine mpdalc::mpalloc::mpallocivec | ( | INTEGER, dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) integer array
Definition at line 54 of file mpdalc.f90.
subroutine mpdalc::mpalloc::mpalloclarr | ( | INTEGER(kind=large), dimension(:,:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | rows, | ||
INTEGER(kind=large), intent(in) | cols, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (2D) large integer array
Definition at line 89 of file mpdalc.f90.
subroutine mpdalc::mpalloc::mpalloclist | ( | TYPE(listItem), dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) list item array
Definition at line 101 of file mpdalc.f90.