| 366 | //================================================================ |
| 367 | |
| 368 | BitpackFloatDecoder::BitpackFloatDecoder( unsigned bytestreamNumber, SourceDestBuffer &dbuf, |
| 369 | FloatPrecision precision, uint64_t maxRecordCount ) : |
| 370 | BitpackDecoder( bytestreamNumber, dbuf, |
| 371 | ( precision == PrecisionSingle ) ? sizeof( float ) : sizeof( double ), |
| 372 | maxRecordCount ), |
| 373 | precision_( precision ) |
| 374 | { |
| 375 | } |
| 376 | |
| 377 | size_t BitpackFloatDecoder::inputProcessAligned( const char *inbuf, const size_t firstBit, |
| 378 | const size_t endBit ) |
nothing calls this directly
no outgoing calls
no test coverage detected