Searched refs:uuid32 (Results 1 – 4 of 4) sorted by relevance
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()
140 Uuid Uuid::From32Bit(uint32_t uuid32) { in From32Bit() argument143 u.uu[0] = (uint8_t)((0xFF000000 & uuid32) >> 24); in From32Bit()144 u.uu[1] = (uint8_t)((0x00FF0000 & uuid32) >> 16); in From32Bit()145 u.uu[2] = (uint8_t)((0x0000FF00 & uuid32) >> 8); in From32Bit()146 u.uu[3] = (uint8_t)(0x000000FF & uuid32); in From32Bit()
113 Uuid Uuid::From32Bit(uint32_t uuid32) { in From32Bit() argument116 u.uu[0] = (uint8_t)((0xFF000000 & uuid32) >> 24); in From32Bit()117 u.uu[1] = (uint8_t)((0x00FF0000 & uuid32) >> 16); in From32Bit()118 u.uu[2] = (uint8_t)((0x0000FF00 & uuid32) >> 8); in From32Bit()119 u.uu[3] = (uint8_t)(0x000000FF & uuid32); in From32Bit()
2386 uint32_t uuid32; in btm_convert_uuid_to_uuid16() local2395 STREAM_TO_UINT32(uuid32, p_uuid); in btm_convert_uuid_to_uuid16()2396 if (uuid32 < 0x10000) uuid16 = (uint16_t)uuid32; in btm_convert_uuid_to_uuid16()