| 332 | } |
| 333 | |
| 334 | static void WriteUInt32(TArray<uint8_t> &stream, uint32_t v) |
| 335 | { |
| 336 | for (int i = 0; i < 4; i++) |
| 337 | stream.Push((v >> (i * 8)) & 0xff); |
| 338 | } |
| 339 | |
| 340 | static void WriteUInt16(TArray<uint8_t> &stream, uint16_t v) |
| 341 | { |
no test coverage detected