Home | History | Annotate | Download | only in arm64

Lines Matching full:bits

28   uint32_t bits = 0;
29 memcpy(&bits, &value, 4);
30 return bits;
35 uint64_t bits = 0;
36 memcpy(&bits, &value, 8);
37 return bits;
41 static inline float rawbits_to_float(uint32_t bits) {
43 memcpy(&value, &bits, 4);
48 static inline double rawbits_to_double(uint64_t bits) {
50 memcpy(&value, &bits, 8);