libflame  12600
Functions
bl1_constants.c File Reference

(r12600)

Functions

float bl1_s2 (void)
double bl1_d2 (void)
scomplex bl1_c2 (void)
dcomplex bl1_z2 (void)
float bl1_s1 (void)
double bl1_d1 (void)
scomplex bl1_c1 (void)
dcomplex bl1_z1 (void)
float bl1_s1h (void)
double bl1_d1h (void)
scomplex bl1_c1h (void)
dcomplex bl1_z1h (void)
float bl1_s0 (void)
double bl1_d0 (void)
scomplex bl1_c0 (void)
dcomplex bl1_z0 (void)
float bl1_sm1h (void)
double bl1_dm1h (void)
scomplex bl1_cm1h (void)
dcomplex bl1_zm1h (void)
float bl1_sm1 (void)
double bl1_dm1 (void)
scomplex bl1_cm1 (void)
dcomplex bl1_zm1 (void)
float bl1_sm2 (void)
double bl1_dm2 (void)
scomplex bl1_cm2 (void)
dcomplex bl1_zm2 (void)

Function Documentation

scomplex bl1_c0 ( void  )
scomplex bl1_c1 ( void  )
scomplex bl1_c1h ( void  )

References bl1_s0(), bl1_s1h(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bl1_s1h();
    x.imag = bl1_s0();
    return x;
}
scomplex bl1_c2 ( void  )

References bl1_s0(), bl1_s2(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bl1_s2();
    x.imag = bl1_s0();
    return x;
}
scomplex bl1_cm1 ( void  )

References bl1_s0(), bl1_sm1(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bl1_sm1();
    x.imag = bl1_s0();
    return x;
}
scomplex bl1_cm1h ( void  )

References bl1_s0(), bl1_sm1h(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bl1_sm1h();
    x.imag = bl1_s0();
    return x;
}
scomplex bl1_cm2 ( void  )

References bl1_s0(), bl1_sm2(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bl1_sm2();
    x.imag = bl1_s0();
    return x;
}
double bl1_d0 ( void  )

Referenced by bl1_cmaxabsmr(), bl1_dgemm(), bl1_dmaxabsm(), bl1_dmaxabsmr(), bl1_drandmr(), bl1_dsymm(), bl1_z0(), bl1_z1(), bl1_z1h(), bl1_z2(), bl1_zher2k(), bl1_zherk(), bl1_zm1(), bl1_zm1h(), bl1_zm2(), bl1_zmaxabsm(), bl1_zmaxabsmr(), bl1_zsymmize(), FLA_Apply_G_rf_asd_var1(), FLA_Apply_G_rf_asd_var2(), FLA_Apply_G_rf_asd_var3(), FLA_Apply_G_rf_asd_var3b(), FLA_Apply_G_rf_asd_var6(), FLA_Apply_G_rf_asd_var6b(), FLA_Apply_G_rf_asd_var9(), FLA_Apply_G_rf_asd_var9b(), FLA_Apply_G_rf_asz_var1(), FLA_Apply_G_rf_asz_var2(), FLA_Apply_G_rf_asz_var3(), FLA_Apply_G_rf_asz_var6(), FLA_Apply_G_rf_asz_var9(), FLA_Apply_G_rf_opd_var1(), FLA_Apply_G_rf_opd_var2(), FLA_Apply_G_rf_opd_var3(), FLA_Apply_G_rf_opd_var6(), FLA_Apply_G_rf_opd_var9(), FLA_Apply_G_rf_opz_var1(), FLA_Apply_G_rf_opz_var2(), FLA_Apply_G_rf_opz_var3(), FLA_Apply_G_rf_opz_var6(), FLA_Apply_G_rf_opz_var9(), FLA_Bsvd_compute_tol_thresh_opd(), FLA_Bsvd_ext_opd_var1(), FLA_Bsvd_ext_opz_var1(), FLA_Bsvd_find_submatrix_opd(), FLA_Bsvd_v_opd_var1(), FLA_Bsvd_v_opd_var2(), FLA_Bsvd_v_opz_var1(), FLA_Bsvd_v_opz_var2(), FLA_Fused_Ahx_Ax_opd_var1(), FLA_Fused_Ahx_Axpy_Ax_opd_var1(), FLA_Fused_Gerc2_Ahx_Ax_opd_var1(), FLA_Fused_Gerc2_Ahx_Axpy_Ax_opd_var1(), FLA_Fused_Uhu_Yhu_Zhu_opd_var1(), FLA_Fused_UYx_ZVx_opd_var1(), FLA_Fused_UZhu_ZUhu_opd_var1(), FLA_Pythag2_opd(), FLA_Pythag3_opd(), FLA_Tevd_find_submatrix_opd(), FLA_Tevd_v_opd_var2(), FLA_Tevd_v_opz_var2(), and FLA_Tridiag_UT_shift_U_l_opd().

{
    double x;
    x = 0.0;
    return x;
}
double bl1_d1 ( void  )
double bl1_d1h ( void  )

Referenced by bl1_z1h().

{
    double x;
    x = 0.5;
    return x;
}
double bl1_d2 ( void  )

Referenced by bl1_z2().

{
    double x;
    x = 2.0;
    return x;
}
double bl1_dm1 ( void  )
double bl1_dm1h ( void  )

Referenced by bl1_zm1h().

{
    double x;
    x = -0.5;
    return x;
}
double bl1_dm2 ( void  )

Referenced by bl1_zm2().

{
    double x;
    x = -2.0;
    return x;
}
float bl1_s0 ( void  )
float bl1_s1 ( void  )
float bl1_s1h ( void  )

Referenced by bl1_c1h().

{
    float x;
    x = 0.5F;
    return x;
}
float bl1_s2 ( void  )

Referenced by bl1_c2().

{
    float x;
    x = 2.0F;
    return x;
}
float bl1_sm1 ( void  )
float bl1_sm1h ( void  )

Referenced by bl1_cm1h().

{
    float x;
    x = -0.5F;
    return x;
}
float bl1_sm2 ( void  )

Referenced by bl1_cm2().

{
    float x;
    x = -2.0F;
    return x;
}
dcomplex bl1_z0 ( void  )
dcomplex bl1_z1 ( void  )
dcomplex bl1_z1h ( void  )

References bl1_d0(), bl1_d1h(), dcomplex::imag, and dcomplex::real.

{
    dcomplex x;
    x.real = bl1_d1h();
    x.imag = bl1_d0();
    return x;
}
dcomplex bl1_z2 ( void  )

References bl1_d0(), bl1_d2(), dcomplex::imag, and dcomplex::real.

{
    dcomplex x;
    x.real = bl1_d2();
    x.imag = bl1_d0();
    return x;
}
dcomplex bl1_zm1 ( void  )
dcomplex bl1_zm1h ( void  )

References bl1_d0(), bl1_dm1h(), dcomplex::imag, and dcomplex::real.

{
    dcomplex x;
    x.real = bl1_dm1h();
    x.imag = bl1_d0();
    return x;
}
dcomplex bl1_zm2 ( void  )

References bl1_d0(), bl1_dm2(), dcomplex::imag, and dcomplex::real.

{
    dcomplex x;
    x.real = bl1_dm2();
    x.imag = bl1_d0();
    return x;
}