| 205 | } |
| 206 | |
| 207 | inline BOOL ByteStreamOutArrayLE::put16bitsBE(const U8* bytes) |
| 208 | { |
| 209 | swapped[0] = bytes[1]; |
| 210 | swapped[1] = bytes[0]; |
| 211 | return putBytes(swapped, 2); |
| 212 | } |
| 213 | |
| 214 | inline BOOL ByteStreamOutArrayLE::put32bitsBE(const U8* bytes) |
| 215 | { |
nothing calls this directly
no outgoing calls
no test coverage detected