| 209 | } |
| 210 | |
| 211 | inline void ByteStreamInArrayLE::get16bitsBE(U8* bytes) |
| 212 | { |
| 213 | getBytes(swapped, 2); |
| 214 | bytes[0] = swapped[1]; |
| 215 | bytes[1] = swapped[0]; |
| 216 | } |
| 217 | |
| 218 | inline void ByteStreamInArrayLE::get32bitsBE(U8* bytes) |
| 219 | { |
nothing calls this directly
no outgoing calls
no test coverage detected