Home | History | Annotate | Download | only in blas

Lines Matching defs:UPLO

1       SUBROUTINE DTPMV(UPLO,TRANS,DIAG,N,AP,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.
63 * Before entry with UPLO = 'U' or 'u', the array AP must
68 * Before entry with UPLO = 'L' or 'l', the array AP must
121 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN
160 IF (LSAME(UPLO,'U')) THEN
228 IF (LSAME(UPLO,'U')) THEN