Home | History | Annotate | Download | only in fortran

Lines Matching defs:UPLO

1       SUBROUTINE DTBMV(UPLO,TRANS,DIAG,N,K,A,LDA,X,INCX)
4 CHARACTER DIAG,TRANS,UPLO
23 * UPLO - CHARACTER*1.
24 * On entry, UPLO specifies whether the matrix is an upper or
27 * UPLO = 'U' or 'u' A is an upper triangular matrix.
29 * UPLO = 'L' or 'l' A is a lower triangular matrix.
62 * On entry with UPLO = 'U' or 'u', K specifies the number of
64 * On entry with UPLO = 'L' or 'l', K specifies the number of
70 * Before entry with UPLO = 'U' or 'u', the leading ( k + 1 )
88 * Before entry with UPLO = 'L' or 'l', the leading ( k + 1 )
164 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN
207 IF (LSAME(UPLO,'U')) THEN
272 IF (LSAME(UPLO,'U')) THEN