Home | History | Annotate | Download | only in products

Lines Matching refs:uplo

57    char side = 'L', uplo, diag='N', transa; \
65 /* Set uplo */ \
66 uplo = IsLower ? 'L' : 'U'; \
67 if (TriStorageOrder==RowMajor) uplo = (uplo == 'L') ? 'U' : 'L'; \
83 BLASPREFIX##trsm_(&side, &uplo, &transa, &diag, &m, &n, &numext::real_ref(alpha), (const BLASTYPE*)a, &lda, (BLASTYPE*)_other, &ldb); \
110 char side = 'R', uplo, diag='N', transa; \
118 /* Set uplo */ \
119 uplo = IsLower ? 'L' : 'U'; \
120 if (TriStorageOrder==RowMajor) uplo = (uplo == 'L') ? 'U' : 'L'; \
136 BLASPREFIX##trsm_(&side, &uplo, &transa, &diag, &m, &n, &numext::real_ref(alpha), (const BLASTYPE*)a, &lda, (BLASTYPE*)_other, &ldb); \