Home | History | Annotate | Download | only in arm64

Lines Matching refs:bits

27   uint32_t bits = 0;
28 memcpy(&bits, &value, 4);
29 return bits;
34 uint64_t bits = 0;
35 memcpy(&bits, &value, 8);
36 return bits;
40 static inline float rawbits_to_float(uint32_t bits) {
42 memcpy(&value, &bits, 4);
47 static inline double rawbits_to_double(uint64_t bits) {
49 memcpy(&value, &bits, 8);