| 74 | } |
| 75 | |
| 76 | void EncodeStream::writeUint16(uint16_t value) { |
| 77 | if (checkCapacity(2)) { |
| 78 | dataView.setUint16(_position, value); |
| 79 | positionChanged(2); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | void EncodeStream::writeInt32(int32_t value) { |
| 84 | if (checkCapacity(4)) { |
no outgoing calls
no test coverage detected