| 708 | int16_t PopSignedWord() { return (int32_t)this->PopUnsignedWord(); } |
| 709 | |
| 710 | uint32_t PopUnsignedDWord() |
| 711 | { |
| 712 | uint32_t val = this->PopUnsignedWord(); |
| 713 | return val | (this->PopUnsignedWord() << 16); |
| 714 | } |
| 715 | int32_t PopSignedDWord() { return (int32_t)this->PopUnsignedDWord(); } |
| 716 | |
| 717 | uint64_t PopUnsignedQWord() |
no test coverage detected