Lines Matching refs:Dqword

341   union Dqword {  union
345 Dqword(T0 F0, T1 F1, T2 F2, T3 F3) { in Dqword() function
353 Dqword(typename std::enable_if<std::is_same<T, int32_t>::value, T>::type I0, in Dqword() function
362 Dqword(typename std::enable_if<std::is_same<T, uint64_t>::value, T>::type in Dqword() function
370 Dqword(typename std::enable_if<std::is_same<T, double>::value, T>::type D0, in Dqword() function
376 bool operator==(const Dqword &Rhs) const {
395 Dqword() = delete;
399 static_assert(sizeof(Dqword) == 2 * sizeof(uint64_t),
407 static constexpr uint32_t N = sizeof(Dqword) / sizeof(C);
408 static_assert(N * sizeof(C) == sizeof(Dqword),
415 Dqword>::type \
416 operator Op(const Dqword &Rhs) const { \
430 return *reinterpret_cast<Dqword *>(&Ret); \
445 Dqword>::type \
446 Op(const Dqword &Rhs) const { \
463 return *reinterpret_cast<Dqword *>(&Ret); \
472 Dqword operator Op(const Dqword &Rhs) const { \
492 return *reinterpret_cast<Dqword *>(&Ret); \
508 Dqword operator Op(uint8_t imm) const { \
515 return *reinterpret_cast<Dqword *>(&Ret); \
526 Dqword>::type
527 operator*(const Dqword &Rhs) const {
541 return *reinterpret_cast<Dqword *>(&Ret);
547 Dqword operator*(const Dqword &Rhs) const {
567 return *reinterpret_cast<Dqword *>(&Ret);
578 return PackedArith<Container>(*reinterpret_cast<Dqword *>(&Ret));
583 Dqword Name##Suffix(const Dqword &Rhs) const { \
594 return *reinterpret_cast<Dqword *>(&Ret); \
604 Dqword blendWith(const Dqword &Rhs, const Dqword &Mask) const { in blendWith()
621 return *reinterpret_cast<Dqword *>(&Ret); in blendWith()
629 explicit PackedArith(const Dqword &MyLhs) : Lhs(MyLhs) {} in PackedArith()
633 const Dqword Lhs;
637 template <typename C> static PackedArith<C> packedAs(const Dqword &D) { in packedAs()
880 Dqword contentsOfDqword(uint32_t InitialDword) const { in contentsOfDqword()
881 return *reinterpret_cast<Dqword *>( in contentsOfDqword()
902 void setDqwordTo(uint32_t InitialDword, const Dqword &qdword) { in setDqwordTo()
909 typename std::enable_if<std::is_same<T, Dqword>::value, Dqword>::type
915 typename std::enable_if<!std::is_same<T, Dqword>::value, T>::type