Home | History | Annotate | Download | only in fortran

Lines Matching defs:UPLO

1       SUBROUTINE CHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY)
5 CHARACTER UPLO
24 * UPLO - CHARACTER*1.
25 * On entry, UPLO specifies whether the upper or lower
29 * UPLO = 'U' or 'u' The upper triangular part of A is
32 * UPLO = 'L' or 'l' The lower triangular part of A is
48 * Before entry with UPLO = 'U' or 'u', the array AP must
53 * Before entry with UPLO = 'L' or 'l', the array AP must
126 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN
190 IF (LSAME(UPLO,'U')) THEN