* @brief The number of bits, trits, and quints needed for a quant level. */
| 335 | * @brief The number of bits, trits, and quints needed for a quant level. |
| 336 | */ |
| 337 | struct btq_count |
| 338 | { |
| 339 | /** @brief The number of bits. */ |
| 340 | uint8_t bits:6; |
| 341 | |
| 342 | /** @brief The number of trits. */ |
| 343 | uint8_t trits:1; |
| 344 | |
| 345 | /** @brief The number of quints. */ |
| 346 | uint8_t quints:1; |
| 347 | }; |
| 348 | |
| 349 | /** |
| 350 | * @brief The table of bits, trits, and quints needed for a quant encode. |
nothing calls this directly
no outgoing calls
no test coverage detected