Searched refs:uuid32 (Results 1 – 3 of 3) sorted by relevance
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()
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()
2473 uint32_t uuid32; in btm_convert_uuid_to_uuid16() local2482 STREAM_TO_UINT32(uuid32, p_uuid); in btm_convert_uuid_to_uuid16()2483 if (uuid32 < 0x10000) uuid16 = (uint16_t)uuid32; in btm_convert_uuid_to_uuid16()