Searched refs:uuid32 (Results 1 – 4 of 4) sorted by relevance
114 Uuid Uuid::From32Bit(uint32_t uuid32) { in From32Bit() argument117 u.uu[0] = (uint8_t)((0xFF000000 & uuid32) >> 24); in From32Bit()118 u.uu[1] = (uint8_t)((0x00FF0000 & uuid32) >> 16); in From32Bit()119 u.uu[2] = (uint8_t)((0x0000FF00 & uuid32) >> 8); in From32Bit()120 u.uu[3] = (uint8_t)(0x000000FF & uuid32); in From32Bit()
109 Uuid Uuid::From32Bit(uint32_t uuid32) { in From32Bit() argument112 u.uu[0] = (uint8_t)((0xFF000000 & uuid32) >> 24); in From32Bit()113 u.uu[1] = (uint8_t)((0x00FF0000 & uuid32) >> 16); in From32Bit()114 u.uu[2] = (uint8_t)((0x0000FF00 & uuid32) >> 8); in From32Bit()115 u.uu[3] = (uint8_t)(0x000000FF & uuid32); in From32Bit()
141 Uuid Uuid::From32Bit(uint32_t uuid32) { in From32Bit() argument144 u.uu[0] = (uint8_t)((0xFF000000 & uuid32) >> 24); in From32Bit()145 u.uu[1] = (uint8_t)((0x00FF0000 & uuid32) >> 16); in From32Bit()146 u.uu[2] = (uint8_t)((0x0000FF00 & uuid32) >> 8); in From32Bit()147 u.uu[3] = (uint8_t)(0x000000FF & uuid32); in From32Bit()
1814 uint32_t uuid32; in btm_convert_uuid_to_uuid16() local1823 STREAM_TO_UINT32(uuid32, p_uuid); in btm_convert_uuid_to_uuid16()1824 if (uuid32 < 0x10000) uuid16 = (uint16_t)uuid32; in btm_convert_uuid_to_uuid16()