Lines Matching refs:shp

71     subroutine adios2_allocate_real_1d(array, shp, ierr)  argument
73 integer(kind=8), dimension(1), intent(in):: shp local
77 allocate (array(shp(1)), stat=ierr)
81 subroutine adios2_allocate_dp_1d(array, shp, ierr) argument
83 integer(kind=8), dimension(1), intent(in):: shp local
87 allocate (array(shp(1)), stat=ierr)
91 subroutine adios2_allocate_complex_1d(array, shp, ierr) argument
93 integer(kind=8), dimension(1), intent(in):: shp local
97 allocate (array(shp(1)), stat=ierr)
101 subroutine adios2_allocate_complex_dp_1d(array, shp, ierr) argument
103 integer(kind=8), dimension(1), intent(in):: shp local
107 allocate (array(shp(1)), stat=ierr)
111 subroutine adios2_allocate_integer1_1d(array, shp, ierr) argument
113 integer(kind=8), dimension(1), intent(in):: shp local
117 allocate (array(shp(1)), stat=ierr)
121 subroutine adios2_allocate_integer2_1d(array, shp, ierr) argument
123 integer(kind=8), dimension(1), intent(in):: shp local
127 allocate (array(shp(1)), stat=ierr)
131 subroutine adios2_allocate_integer4_1d(array, shp, ierr) argument
133 integer(kind=8), dimension(1), intent(in):: shp local
137 allocate (array(shp(1)), stat=ierr)
141 subroutine adios2_allocate_integer8_1d(array, shp, ierr) argument
143 integer(kind=8), dimension(1), intent(in):: shp local
147 allocate (array(shp(1)), stat=ierr)
152 subroutine adios2_allocate_real_2d(array, shp, ierr) argument
154 integer(kind=8), dimension(2), intent(in):: shp local
158 allocate (array(shp(1), shp(2)), stat=ierr)
162 subroutine adios2_allocate_dp_2d(array, shp, ierr) argument
164 integer(kind=8), dimension(2), intent(in):: shp local
168 allocate (array(shp(1), shp(2)), stat=ierr)
172 subroutine adios2_allocate_complex_2d(array, shp, ierr) argument
174 integer(kind=8), dimension(2), intent(in):: shp local
178 allocate (array(shp(1), shp(2)), stat=ierr)
182 subroutine adios2_allocate_complex_dp_2d(array, shp, ierr) argument
184 integer(kind=8), dimension(2), intent(in):: shp local
188 allocate (array(shp(1), shp(2)), stat=ierr)
192 subroutine adios2_allocate_integer1_2d(array, shp, ierr) argument
194 integer(kind=8), dimension(2), intent(in):: shp local
198 allocate (array(shp(1), shp(2)), stat=ierr)
202 subroutine adios2_allocate_integer2_2d(array, shp, ierr) argument
204 integer(kind=8), dimension(2), intent(in):: shp local
208 allocate (array(shp(1), shp(2)), stat=ierr)
212 subroutine adios2_allocate_integer4_2d(array, shp, ierr) argument
214 integer(kind=8), dimension(2), intent(in):: shp local
218 allocate (array(shp(1), shp(2)), stat=ierr)
222 subroutine adios2_allocate_integer8_2d(array, shp, ierr) argument
224 integer(kind=8), dimension(2), intent(in):: shp local
228 allocate (array(shp(1), shp(2)), stat=ierr)
233 subroutine adios2_allocate_real_3d(array, shp, ierr) argument
235 integer(kind=8), dimension(3), intent(in):: shp local
239 allocate (array(shp(1), shp(2), shp(3)), stat=ierr)
243 subroutine adios2_allocate_dp_3d(array, shp, ierr) argument
245 integer(kind=8), dimension(3), intent(in):: shp local
249 allocate (array(shp(1), shp(2), shp(3)), stat=ierr)
253 subroutine adios2_allocate_complex_3d(array, shp, ierr) argument
255 integer(kind=8), dimension(3), intent(in):: shp local
259 allocate (array(shp(1), shp(2), shp(3)), stat=ierr)
263 subroutine adios2_allocate_complex_dp_3d(array, shp, ierr) argument
265 integer(kind=8), dimension(3), intent(in):: shp local
269 allocate (array(shp(1), shp(2), shp(3)), stat=ierr)
273 subroutine adios2_allocate_integer1_3d(array, shp, ierr) argument
275 integer(kind=8), dimension(3), intent(in):: shp local
279 allocate (array(shp(1), shp(2), shp(3)), stat=ierr)
283 subroutine adios2_allocate_integer2_3d(array, shp, ierr) argument
285 integer(kind=8), dimension(3), intent(in):: shp local
289 allocate (array(shp(1), shp(2), shp(3)), stat=ierr)
293 subroutine adios2_allocate_integer4_3d(array, shp, ierr) argument
295 integer(kind=8), dimension(3), intent(in):: shp local
299 allocate (array(shp(1), shp(2), shp(3)), stat=ierr)
303 subroutine adios2_allocate_integer8_3d(array, shp, ierr) argument
305 integer(kind=8), dimension(3), intent(in):: shp local
309 allocate (array(shp(1), shp(2), shp(3)), stat=ierr)
314 subroutine adios2_allocate_real_4d(array, shp, ierr) argument
316 integer(kind=8), dimension(4), intent(in):: shp local
320 allocate (array(shp(1), shp(2), shp(3), shp(4)), stat=ierr)
324 subroutine adios2_allocate_dp_4d(array, shp, ierr) argument
326 integer(kind=8), dimension(4), intent(in):: shp local
330 allocate (array(shp(1), shp(2), shp(3), shp(4)), stat=ierr)
334 subroutine adios2_allocate_complex_4d(array, shp, ierr) argument
336 integer(kind=8), dimension(4), intent(in):: shp local
340 allocate (array(shp(1), shp(2), shp(3), shp(4)), stat=ierr)
344 subroutine adios2_allocate_complex_dp_4d(array, shp, ierr) argument
346 integer(kind=8), dimension(4), intent(in):: shp local
350 allocate (array(shp(1), shp(2), shp(3), shp(4)), stat=ierr)
354 subroutine adios2_allocate_integer1_4d(array, shp, ierr) argument
356 integer(kind=8), dimension(4), intent(in):: shp local
360 allocate (array(shp(1), shp(2), shp(3), shp(4)), stat=ierr)
364 subroutine adios2_allocate_integer2_4d(array, shp, ierr) argument
366 integer(kind=8), dimension(4), intent(in):: shp local
370 allocate (array(shp(1), shp(2), shp(3), shp(4)), stat=ierr)
374 subroutine adios2_allocate_integer4_4d(array, shp, ierr) argument
376 integer(kind=8), dimension(4), intent(in):: shp local
380 allocate (array(shp(1), shp(2), shp(3), shp(4)), stat=ierr)
384 subroutine adios2_allocate_integer8_4d(array, shp, ierr) argument
386 integer(kind=8), dimension(4), intent(in):: shp local
390 allocate (array(shp(1), shp(2), shp(3), shp(4)), stat=ierr)
395 subroutine adios2_allocate_real_5d(array, shp, ierr) argument
397 integer(kind=8), dimension(5), intent(in):: shp local
401 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5)), stat=ierr)
405 subroutine adios2_allocate_dp_5d(array, shp, ierr) argument
407 integer(kind=8), dimension(5), intent(in):: shp local
411 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5)), stat=ierr)
415 subroutine adios2_allocate_complex_5d(array, shp, ierr) argument
417 integer(kind=8), dimension(5), intent(in):: shp local
421 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5)), stat=ierr)
425 subroutine adios2_allocate_complex_dp_5d(array, shp, ierr) argument
427 integer(kind=8), dimension(5), intent(in):: shp local
431 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5)), stat=ierr)
435 subroutine adios2_allocate_integer1_5d(array, shp, ierr) argument
437 integer(kind=8), dimension(5), intent(in):: shp local
441 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5)), stat=ierr)
445 subroutine adios2_allocate_integer2_5d(array, shp, ierr) argument
447 integer(kind=8), dimension(5), intent(in):: shp local
451 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5)), stat=ierr)
455 subroutine adios2_allocate_integer4_5d(array, shp, ierr) argument
457 integer(kind=8), dimension(5), intent(in):: shp local
461 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5)), stat=ierr)
465 subroutine adios2_allocate_integer8_5d(array, shp, ierr) argument
467 integer(kind=8), dimension(5), intent(in):: shp local
471 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5)), stat=ierr)
476 subroutine adios2_allocate_real_6d(array, shp, ierr) argument
478 integer(kind=8), dimension(6), intent(in):: shp local
482 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5), shp(6)), stat=ierr)
486 subroutine adios2_allocate_dp_6d(array, shp, ierr) argument
488 integer(kind=8), dimension(6), intent(in):: shp local
492 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5), shp(6)), stat=ierr)
496 subroutine adios2_allocate_complex_6d(array, shp, ierr) argument
498 integer(kind=8), dimension(6), intent(in):: shp local
502 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5), shp(6)), stat=ierr)
506 subroutine adios2_allocate_complex_dp_6d(array, shp, ierr) argument
508 integer(kind=8), dimension(6), intent(in):: shp local
512 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5), shp(6)), stat=ierr)
516 subroutine adios2_allocate_integer1_6d(array, shp, ierr) argument
518 integer(kind=8), dimension(6), intent(in):: shp local
522 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5), shp(6)), stat=ierr)
526 subroutine adios2_allocate_integer2_6d(array, shp, ierr) argument
528 integer(kind=8), dimension(6), intent(in):: shp local
532 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5), shp(6)), stat=ierr)
536 subroutine adios2_allocate_integer4_6d(array, shp, ierr) argument
538 integer(kind=8), dimension(6), intent(in):: shp local
542 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5), shp(6)), stat=ierr)
546 subroutine adios2_allocate_integer8_6d(array, shp, ierr) argument
548 integer(kind=8), dimension(6), intent(in):: shp local
552 allocate (array(shp(1), shp(2), shp(3), shp(4), shp(5), shp(6)), stat=ierr)