| 221 | } |
| 222 | |
| 223 | inline BOOL ByteStreamOutArrayLE::put64bitsBE(const U8* bytes) |
| 224 | { |
| 225 | swapped[0] = bytes[7]; |
| 226 | swapped[1] = bytes[6]; |
| 227 | swapped[2] = bytes[5]; |
| 228 | swapped[3] = bytes[4]; |
| 229 | swapped[4] = bytes[3]; |
| 230 | swapped[5] = bytes[2]; |
| 231 | swapped[6] = bytes[1]; |
| 232 | swapped[7] = bytes[0]; |
| 233 | return putBytes(swapped, 8); |
| 234 | } |
| 235 | |
| 236 | inline ByteStreamOutArrayBE::ByteStreamOutArrayBE(I64 alloc) : ByteStreamOutArray(alloc) |
| 237 | { |
nothing calls this directly
no outgoing calls
no test coverage detected