| 701 | int8_t PopSignedByte() { return (int8_t)this->PopUnsignedByte(); } |
| 702 | |
| 703 | uint16_t PopUnsignedWord() |
| 704 | { |
| 705 | uint16_t val = this->PopUnsignedByte(); |
| 706 | return val | (this->PopUnsignedByte() << 8); |
| 707 | } |
| 708 | int16_t PopSignedWord() { return (int32_t)this->PopUnsignedWord(); } |
| 709 | |
| 710 | uint32_t PopUnsignedDWord() |
no test coverage detected