Searched refs:as_uint (Results 1 – 5 of 5) sorted by relevance
77 union _cbor_float_helper helper = {.as_uint = _cbor_load_uint32(source)}; in _cbor_load_float()84 union _cbor_double_helper helper = {.as_uint = _cbor_load_uint64(source)}; in _cbor_load_double()
134 uint32_t val = ((union _cbor_float_helper){.as_float = value}).as_uint; in cbor_encode_half()190 ((union _cbor_float_helper){.as_float = value}).as_uint, buffer, in cbor_encode_single()203 ((union _cbor_double_helper){.as_double = value}).as_uint, buffer, in cbor_encode_double()
149 uint32_t as_uint; member155 uint64_t as_uint; member
38 DEFINE_OPCODE(0x2b, "as_uint", as_uint)
614 #define as_uint(x) __builtin_astype((x), uint) macro