pub fn BrotliBuildAndStoreHuffmanTreeFast<AllocHT>(
    m: &mut AllocHT,
    histogram: &[u32],
    histogram_total: usize,
    max_bits: usize,
    depth: &mut [u8],
    bits: &mut [u16],
    storage_ix: &mut usize,
    storage: &mut [u8]
)where
    AllocHT: Allocator<HuffmanTree>,