|
24 | 24 | * Applies a plane rotation. |
25 | 25 | * |
26 | 26 | * @param N number of indexed elements |
27 | | -* @param CX first input array |
28 | | -* @param strideX CX stride length |
29 | | -* @param CY second input array |
30 | | -* @param strideY CY stride length |
| 27 | +* @param X first input array |
| 28 | +* @param strideX X stride length |
| 29 | +* @param Y second input array |
| 30 | +* @param strideY Y stride length |
31 | 31 | * @param c cosine of the angle of rotation |
32 | 32 | * @param s sine of the angle of rotation |
33 | 33 | */ |
34 | | -void API_SUFFIX(c_csrot)( const CBLAS_INT N, void *CX, const CBLAS_INT strideX, void *CY, const CBLAS_INT strideY, const float c, const float s ) { |
| 34 | +void API_SUFFIX(c_csrot)( const CBLAS_INT N, void *X, const CBLAS_INT strideX, void *Y, const CBLAS_INT strideY, const float c, const float s ) { |
35 | 35 | CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX ); |
36 | 36 | CBLAS_INT oy = stdlib_strided_stride2offset( N, strideY ); |
37 | | - API_SUFFIX(c_csrot_ndarray)( N, CX, strideX, ox, CY, strideY, oy, c, s ); |
| 37 | + API_SUFFIX(c_csrot_ndarray)( N, X, strideX, ox, Y, strideY, oy, c, s ); |
38 | 38 | } |
0 commit comments