|
libflame
12600
|
Functions | |
| void | bl1_sswapv (int n, float *x, int incx, float *y, int incy) |
| void | bl1_dswapv (int n, double *x, int incx, double *y, int incy) |
| void | bl1_cswapv (int n, scomplex *x, int incx, scomplex *y, int incy) |
| void | bl1_zswapv (int n, dcomplex *x, int incx, dcomplex *y, int incy) |
| void bl1_cswapv | ( | int | n, |
| scomplex * | x, | ||
| int | incx, | ||
| scomplex * | y, | ||
| int | incy | ||
| ) |
References bl1_cswap(), and bl1_zero_dim1().
Referenced by FLA_Apply_pivots_macro_external(), FLA_Sort_bsvd_ext_b_opc(), and FLA_Sort_bsvd_ext_f_opc().
{
// Return early if possible.
if ( bl1_zero_dim1( n ) ) return;
bl1_cswap( n,
x, incx,
y, incy );
}
| void bl1_dswapv | ( | int | n, |
| double * | x, | ||
| int | incx, | ||
| double * | y, | ||
| int | incy | ||
| ) |
References bl1_dswap(), and bl1_zero_dim1().
Referenced by FLA_Apply_pivots_macro_external(), FLA_Sort_bsvd_ext_b_opd(), FLA_Sort_bsvd_ext_f_opd(), FLA_Sort_evd_b_opd(), FLA_Sort_evd_f_opd(), FLA_Sort_svd_b_opd(), and FLA_Sort_svd_f_opd().
{
// Return early if possible.
if ( bl1_zero_dim1( n ) ) return;
bl1_dswap( n,
x, incx,
y, incy );
}
| void bl1_sswapv | ( | int | n, |
| float * | x, | ||
| int | incx, | ||
| float * | y, | ||
| int | incy | ||
| ) |
References bl1_sswap(), and bl1_zero_dim1().
Referenced by FLA_Apply_pivots_macro_external(), FLA_Sort_bsvd_ext_b_ops(), and FLA_Sort_bsvd_ext_f_ops().
{
// Return early if possible.
if ( bl1_zero_dim1( n ) ) return;
bl1_sswap( n,
x, incx,
y, incy );
}
| void bl1_zswapv | ( | int | n, |
| dcomplex * | x, | ||
| int | incx, | ||
| dcomplex * | y, | ||
| int | incy | ||
| ) |
References bl1_zero_dim1(), and bl1_zswap().
Referenced by FLA_Apply_pivots_macro_external(), FLA_Sort_bsvd_ext_b_opz(), FLA_Sort_bsvd_ext_f_opz(), FLA_Sort_evd_b_opz(), FLA_Sort_evd_f_opz(), FLA_Sort_svd_b_opz(), and FLA_Sort_svd_f_opz().
{
// Return early if possible.
if ( bl1_zero_dim1( n ) ) return;
bl1_zswap( n,
x, incx,
y, incy );
}
1.7.6.1