| 715 | int32_t PopSignedDWord() { return (int32_t)this->PopUnsignedDWord(); } |
| 716 | |
| 717 | uint64_t PopUnsignedQWord() |
| 718 | { |
| 719 | uint64_t val = this->PopUnsignedDWord(); |
| 720 | return val | (((uint64_t)this->PopUnsignedDWord()) << 32); |
| 721 | } |
| 722 | int64_t PopSignedQWord() { return (int64_t)this->PopUnsignedQWord(); } |
| 723 | |
| 724 | /** Rotate the top four words down: W1, W2, W3, W4 -> W4, W1, W2, W3 */ |
no test coverage detected