HomeSort by relevance Sort by last modified time
    Searched refs:incx (Results 51 - 58 of 58) sorted by null

1 23

  /external/eigen/blas/f2c/
chpmv.c 16 ap, complex *x, integer *incx, complex *beta, complex *y, integer *
90 /* ( 1 + ( n - 1 )*abs( INCX ) ). */
95 /* INCX - INTEGER. */
96 /* On entry, INCX specifies the increment for the elements of */
97 /* X. INCX must not be zero. */
154 } else if (*incx == 0) {
173 if (*incx > 0) {
176 kx = 1 - (*n - 1) * *incx;
243 if (*incx == 1 && *incy == 1) {
312 ix += *incx;
    [all...]
zhpmv.c 16 doublecomplex *ap, doublecomplex *x, integer *incx, doublecomplex *
90 /* ( 1 + ( n - 1 )*abs( INCX ) ). */
95 /* INCX - INTEGER. */
96 /* On entry, INCX specifies the increment for the elements of */
97 /* X. INCX must not be zero. */
154 } else if (*incx == 0) {
173 if (*incx > 0) {
176 kx = 1 - (*n - 1) * *incx;
243 if (*incx == 1 && *incy == 1) {
312 ix += *incx;
    [all...]
chbmv.c 16 alpha, complex *a, integer *lda, complex *x, integer *incx, complex *
127 /* ( 1 + ( n - 1 )*abs( INCX ) ). */
132 /* INCX - INTEGER. */
133 /* On entry, INCX specifies the increment for the elements of */
134 /* X. INCX must not be zero. */
195 } else if (*incx == 0) {
214 if (*incx > 0) {
217 kx = 1 - (*n - 1) * *incx;
284 if (*incx == 1 && *incy == 1) {
356 ix += *incx;
    [all...]
zhbmv.c 17 incx, doublecomplex *beta, doublecomplex *y, integer *incy, ftnlen
128 /* ( 1 + ( n - 1 )*abs( INCX ) ). */
133 /* INCX - INTEGER. */
134 /* On entry, INCX specifies the increment for the elements of */
135 /* X. INCX must not be zero. */
196 } else if (*incx == 0) {
215 if (*incx > 0) {
218 kx = 1 - (*n - 1) * *incx;
285 if (*incx == 1 && *incy == 1) {
357 ix += *incx;
    [all...]
  /external/cblas/src/
cblas_cgemv.c 15 const void *X, const int incX, const void *beta,
25 F77_INT F77_M=M, F77_N=N, F77_lda=lda, F77_incX=incX, F77_incY=incY;
30 #define F77_incX incx
34 int n=0, i=0, incx=incX; local
82 if( incX > 0 ) {
83 i = incX << 1 ;
87 i = incX *(-2);
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_blas.h 141 const DeviceMemory<T> &x, int incx,
  /external/tensorflow/tensorflow/stream_executor/rocm/
rocm_blas.h 139 const DeviceMemory<T> &x, int incx,
  /external/eigen/Eigen/src/misc/
lapacke.h     [all...]

Completed in 1611 milliseconds

1 23