Home | History | Annotate | Download | only in blas

Lines Matching refs:DIAG

1       SUBROUTINE ZTBMV(UPLO,TRANS,DIAG,N,K,A,LDA,X,INCX)
4 CHARACTER DIAG,TRANS,UPLO
45 * DIAG - CHARACTER*1.
46 * On entry, DIAG specifies whether or not A is unit
49 * DIAG = 'U' or 'u' A is assumed to be unit triangular.
51 * DIAG = 'N' or 'n' A is not assumed to be unit
106 * Note that when DIAG = 'U' or 'u' the elements of the array A
169 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN
190 NOUNIT = LSAME(DIAG,'N')