[][src]Function core::arch::mips::__msa_fclass_d

pub unsafe fn __msa_fclass_d(a: v2f64) -> v2i64
🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on MIPS and target feature msa only.

Vector Floating-Point Class Mask

Store in each element of vector (wto signed 64-bit integer numbers) a bit mask reflecting the floating-point class of the corresponding element of vector 'a' (wto 64-bit floating point numbers). The mask has 10 bits as follows. Bits 0 and 1 indicate NaN values: signaling NaN (bit 0) and quiet NaN (bit 1). Bits 2, 3, 4, 5 classify negative values: infinity (bit 2), normal (bit 3), subnormal (bit 4), and zero (bit 5). Bits 6, 7, 8, 9classify positive values:infinity (bit 6), normal (bit 7), subnormal (bit 8), and zero (bit 9).