Searched defs:HalfWords (Results 1 – 1 of 1) sorted by relevance
164 struct HalfWords { struct165 constexpr HalfWords() : Hi(0), Lo(0) {} in HalfWords() argument166 constexpr HalfWords(uint32_t Hi, uint32_t Lo) : Hi(Hi), Lo(Lo) { in HalfWords() argument170 const uint16_t Hi; // First halfword171 const uint16_t Lo; // Second halfword