LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
CBLAS_INDEX cblas_izamax ( const int  N,
const void *  X,
const int  incX 
)

Definition at line 12 of file cblas_izamax.c.

13 {
14  CBLAS_INDEX iamax;
15 #ifdef F77_INT
16  F77_INT F77_N=N, F77_incX=incX;
17 #else
18  #define F77_N N
19  #define F77_incX incX
20 #endif
21  F77_izamax_sub( &F77_N, X, &F77_incX, &iamax);
22  return (iamax ? iamax-1 : 0);
23 }
#define F77_N
#define F77_incX
#define CBLAS_INDEX
Definition: cblas.h:16
void F77_izamax_sub(FINT, const void *, FINT, FINT2)
#define N
Definition: example_user.c:10

Here is the call graph for this function:

Here is the caller graph for this function: