| 388 | //================ |
| 389 | |
| 390 | BitpackFloatEncoder::BitpackFloatEncoder( unsigned bytestreamNumber, SourceDestBuffer &sbuf, |
| 391 | unsigned outputMaxSize, FloatPrecision precision ) : |
| 392 | BitpackEncoder( bytestreamNumber, sbuf, outputMaxSize, |
| 393 | ( precision == PrecisionSingle ) ? sizeof( float ) : sizeof( double ) ), |
| 394 | precision_( precision ) |
| 395 | { |
| 396 | } |
| 397 | |
| 398 | uint64_t BitpackFloatEncoder::processRecords( size_t recordCount ) |
| 399 | { |
nothing calls this directly
no outgoing calls
no test coverage detected