pub fn BrotliStoreMetaBlockTrivial<Alloc, Cb, 'a>(
    alloc: &mut Alloc,
    input: &'a [u8],
    start_pos: usize,
    length: usize,
    mask: usize,
    is_last: i32,
    params: &BrotliEncoderParams,
    distance_cache: &[i32; 4],
    commands: &[Command],
    n_commands: usize,
    recoder_state: &mut RecoderState,
    storage_ix: &mut usize,
    storage: &mut [u8],
    f: &mut Cb
)where
    Alloc: BrotliAlloc,
    Cb: FnMut(&mut PredictionModeContextMap<InputReferenceMut<'_>>, &mut [Command<SliceOffset>], InputPair<'_>, &mut Alloc),