Function lapack_sys::dsysvx_[][src]

pub unsafe extern "C" fn dsysvx_(
    fact: *const c_char,
    uplo: *const c_char,
    n: *const c_int,
    nrhs: *const c_int,
    A: *const f64,
    lda: *const c_int,
    AF: *mut f64,
    ldaf: *const c_int,
    ipiv: *mut c_int,
    B: *const f64,
    ldb: *const c_int,
    X: *mut f64,
    ldx: *const c_int,
    rcond: *mut f64,
    ferr: *mut f64,
    berr: *mut f64,
    work: *mut f64,
    lwork: *const c_int,
    iwork: *mut c_int,
    info: *mut c_int
)