Lines Matching defs:y
13 real, intent(in) :: x, y local
16 real, intent(in) :: x, y, z, w local
24 subroutine s2(x, y, z) argument
27 subroutine s3(x, y, z, w) argument
30 subroutine s4(x, y, z, w, u) argument
102 subroutine s1(x, y) argument
104 real :: y(f(x)) ! resolves to f_real4 local
106 subroutine s2(x, y) argument
108 real :: y(f(x)) ! resolves to f_real8 local
110 subroutine s3(x, y) argument
112 real :: y(f(x)) ! resolves to f_integer local
191 subroutine s1(x, y) argument
193 real :: y(f(x)) ! resolves to f_elem local
195 subroutine s2(x, y) argument
197 real :: y(f(x)) ! resolves to f_vector (preferred over elemental one) local
199 subroutine s3(x, y) argument
201 real :: y(ubound(f(x), 1)) ! resolves to f_elem local
235 subroutine s1(x, y) argument
237 real :: y(.foo. x) ! resolves to f_real local
239 subroutine s2(x, y) argument
241 real :: y(.foo. x) ! resolves to f_integer local
278 real, intent(in) :: y local
282 complex, intent(in) :: y local
286 subroutine s1(x, y) argument
288 real :: y(1.0 .foo. x) ! resolves to f2 local
290 subroutine s2(x, y) argument
292 real :: y(1.0 .foo. x) ! resolves to f1 local