pub unsafe fn dpbsvx(
fact: u8,
uplo: u8,
n: i32,
kd: i32,
nrhs: i32,
ab: &mut [f64],
ldab: i32,
afb: &mut [f64],
ldafb: i32,
equed: &mut u8,
s: &mut [f64],
b: &mut [f64],
ldb: i32,
x: &mut [f64],
ldx: i32,
rcond: &mut f64,
ferr: &mut [f64],
berr: &mut [f64],
work: &mut [f64],
iwork: &mut [i32],
info: &mut i32,
)