Lines Matching refs:bits
112 DataValue::F16(f) => DataValue::F16(Ieee16::with_bits(f.bits().swap_bytes())), in swap_bytes()
113 DataValue::F32(f) => DataValue::F32(Ieee32::with_bits(f.bits().swap_bytes())), in swap_bytes()
114 DataValue::F64(f) => DataValue::F64(Ieee64::with_bits(f.bits().swap_bytes())), in swap_bytes()
115 DataValue::F128(f) => DataValue::F128(Ieee128::with_bits(f.bits().swap_bytes())), in swap_bytes()
165 DataValue::F16(f) => dst[..2].copy_from_slice(&f.bits().to_ne_bytes()[..]), in write_to_slice_ne()
166 DataValue::F32(f) => dst[..4].copy_from_slice(&f.bits().to_ne_bytes()[..]), in write_to_slice_ne()
167 DataValue::F64(f) => dst[..8].copy_from_slice(&f.bits().to_ne_bytes()[..]), in write_to_slice_ne()
168 DataValue::F128(f) => dst[..16].copy_from_slice(&f.bits().to_ne_bytes()[..]), in write_to_slice_ne()
271 (DataValue::F16(a), DataValue::F16(b)) => a.bits() == b.bits(), in bitwise_eq()
272 (DataValue::F32(a), DataValue::F32(b)) => a.bits() == b.bits(), in bitwise_eq()
273 (DataValue::F64(a), DataValue::F64(b)) => a.bits() == b.bits(), in bitwise_eq()
274 (DataValue::F128(a), DataValue::F128(b)) => a.bits() == b.bits(), in bitwise_eq()