1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
#![allow(dead_code)]
use super::combined_alloc::BrotliAlloc;
use super::backward_references::{BrotliEncoderParams};
use super::encode::{BROTLI_DISTANCE_ALPHABET_SIZE, BROTLI_MAX_DISTANCE_BITS, BROTLI_LARGE_MAX_DISTANCE_BITS, BROTLI_MAX_ALLOWED_DISTANCE};
use super::constants::BROTLI_MAX_NPOSTFIX;
use super::bit_cost::{BitsEntropy, BrotliPopulationCost};
use super::block_split::BlockSplit;
use super::block_splitter::BrotliSplitBlock;
use super::brotli_bit_stream::MetaBlockSplit;
use super::cluster::BrotliClusterHistograms;
use super::command::{Command, CommandCopyLen, CommandRestoreDistanceCode, PrefixEncodeCopyDistance, BrotliDistanceParams};
use super::entropy_encode::BrotliOptimizeHuffmanCountsForRle;
use super::histogram::{BrotliBuildHistogramsWithContext, CostAccessors, HistogramLiteral,
                       HistogramCommand, HistogramDistance, HistogramClear, ClearHistograms,
                       ContextType, HistogramAddHistogram, HistogramAddItem, Context,
                       };
use super::super::alloc;
use super::super::alloc::{SliceWrapper, SliceWrapperMut, Allocator};
use super::util::{brotli_min_size_t, brotli_max_size_t};
use core;

pub fn BrotliInitDistanceParams(params: &mut BrotliEncoderParams,
    npostfix: u32, ndirect: u32) {
    let dist_params = &mut params.dist;
    let mut alphabet_size;
    let mut max_distance;

    dist_params.distance_postfix_bits = npostfix;
    dist_params.num_direct_distance_codes = ndirect;

    alphabet_size = BROTLI_DISTANCE_ALPHABET_SIZE(
        npostfix, ndirect, BROTLI_MAX_DISTANCE_BITS);
    max_distance = ndirect + (1u32 << (BROTLI_MAX_DISTANCE_BITS + npostfix + 2)) -
        (1u32 << (npostfix + 2));

    if (params.large_window) {
        let bound:[u32;BROTLI_MAX_NPOSTFIX + 1] = [0, 4, 12, 28];
        let postfix = 1u32 << npostfix;
        alphabet_size = BROTLI_DISTANCE_ALPHABET_SIZE(
            npostfix, ndirect, BROTLI_LARGE_MAX_DISTANCE_BITS);
        /* The maximum distance is set so that no distance symbol used can encode
        a distance larger than BROTLI_MAX_ALLOWED_DISTANCE with all
        its extra bits set. */
        if (ndirect < bound[npostfix as usize]) {
            max_distance = BROTLI_MAX_ALLOWED_DISTANCE as u32 - (bound[npostfix as usize] - ndirect);
        } else if (ndirect >= bound[npostfix as usize ] + postfix) {
            max_distance = (3u32 << 29) - 4 + (ndirect - bound[npostfix as usize]);
        } else {
            max_distance = BROTLI_MAX_ALLOWED_DISTANCE as u32;
        }
    }
    
    dist_params.alphabet_size = alphabet_size;
    dist_params.max_distance = max_distance as usize;
}

fn RecomputeDistancePrefixes(cmds: &mut [Command],
                             num_commands: usize,
                             orig_params:&BrotliDistanceParams,
                             new_params: &BrotliDistanceParams) {


    if orig_params.distance_postfix_bits == new_params.distance_postfix_bits && orig_params.num_direct_distance_codes == new_params.num_direct_distance_codes {
        return;
    }

    for cmd in cmds.split_at_mut(num_commands).0.iter_mut() {
        if (CommandCopyLen(cmd) != 0 && cmd.cmd_prefix_ >= 128) {
            let ret = CommandRestoreDistanceCode(cmd, orig_params);
            PrefixEncodeCopyDistance(ret as usize,
                                     new_params.num_direct_distance_codes as usize,
                                     new_params.distance_postfix_bits as u64,
                                     &mut cmd.dist_prefix_,
                                     &mut cmd.dist_extra_);
    }
  }
}

fn ComputeDistanceCost(cmds: &[Command],
                       num_commands: usize,
                       orig_params: &BrotliDistanceParams,
                       new_params: &BrotliDistanceParams,
                       scratch: &mut <HistogramDistance as CostAccessors>::i32vec,
                       cost: &mut f64) -> bool {

    let mut equal_params = false;
    let mut dist_prefix: u16 = 0;
    let mut dist_extra: u32 = 0;
    let mut extra_bits: f64 = 0.0;
    let mut histo = HistogramDistance::default();


    if (orig_params.distance_postfix_bits == new_params.distance_postfix_bits &&
        orig_params.num_direct_distance_codes ==
        new_params.num_direct_distance_codes) {
        equal_params = true;
    }
    for cmd in cmds.split_at(num_commands).0 {
        if CommandCopyLen(cmd) != 0 && cmd.cmd_prefix_ >= 128 {
            if (equal_params) {
                dist_prefix = cmd.dist_prefix_;
            } else {
                let distance = CommandRestoreDistanceCode(cmd, orig_params);
                if distance > new_params.max_distance as u32 {
                    return false;
                }
                PrefixEncodeCopyDistance(distance as usize,
                                         new_params.num_direct_distance_codes as usize,
                                         new_params.distance_postfix_bits as u64,
                                         &mut dist_prefix,
                                         &mut dist_extra);
            }
            HistogramAddItem(&mut histo, (dist_prefix & 0x3FF) as usize);
            extra_bits += (dist_prefix >> 10) as f64;
        }
    }
    
    *cost = BrotliPopulationCost(&histo, scratch) as f64 + extra_bits;
    return true;
}


pub fn BrotliBuildMetaBlock<Alloc: BrotliAlloc,>
  (alloc: &mut Alloc,
   ringbuffer: &[u8],
   pos: usize,
   mask: usize,
   params: &mut BrotliEncoderParams,
   prev_byte: u8,
   prev_byte2: u8,
   cmds: &mut [Command],
   num_commands: usize,
   literal_context_mode: ContextType,
   lit_scratch_space: &mut <HistogramLiteral as CostAccessors>::i32vec,
   cmd_scratch_space: &mut <HistogramCommand as CostAccessors>::i32vec,
   dst_scratch_space: &mut <HistogramDistance as CostAccessors>::i32vec,
   mb: &mut MetaBlockSplit<Alloc>) {

  static kMaxNumberOfHistograms: usize = 256usize;
  let mut distance_histograms: <Alloc as Allocator<HistogramDistance>>::AllocatedMemory;
  let mut literal_histograms: <Alloc as Allocator<HistogramLiteral>>::AllocatedMemory;
  let mut literal_context_modes: <Alloc as Allocator<ContextType>>::AllocatedMemory = <Alloc as Allocator<ContextType>>::AllocatedMemory::default();
  let literal_histograms_size: usize;
  let distance_histograms_size: usize;
  let mut i: usize;
  let mut literal_context_multiplier: usize = 1usize;
  let mut ndirect_msb:u32 = 0;
  let mut check_orig = true;
  if !params.avoid_distance_prefix_search {
    let mut best_dist_cost: f64 = 1e99;
    let orig_params = params.clone();
    let mut new_params = params.clone();

    for npostfix in 0..(BROTLI_MAX_NPOSTFIX + 1) {
      while ndirect_msb < 16 {
        let ndirect = ndirect_msb << npostfix;
        let skip: bool;
        let mut dist_cost: f64 = 0.0;
        BrotliInitDistanceParams(&mut new_params, npostfix as u32, ndirect as u32);
        if npostfix as u32 == orig_params.dist.distance_postfix_bits &&
            ndirect == orig_params.dist.num_direct_distance_codes {
          check_orig = false;
        }
        skip = !ComputeDistanceCost(
            cmds, num_commands,
            &orig_params.dist, &new_params.dist, dst_scratch_space, &mut dist_cost);
        if skip || (dist_cost > best_dist_cost) {
          break;
        }
        best_dist_cost = dist_cost;
        params.dist = new_params.dist;
        ndirect_msb += 1;
      }
      if ndirect_msb > 0 {
        ndirect_msb -= 1;
      }
      ndirect_msb /= 2;
    }
    if check_orig {
      let mut dist_cost: f64 = 0.0;
      ComputeDistanceCost(cmds, num_commands,
                          &orig_params.dist, &orig_params.dist, dst_scratch_space, &mut dist_cost);
      if dist_cost < best_dist_cost {
        // best_dist_cost = dist_cost; unused
        params.dist = orig_params.dist;
      }
    }
    RecomputeDistancePrefixes(cmds, num_commands,
                              &orig_params.dist, &params.dist);

  }
  BrotliSplitBlock(alloc,
                   cmds,
                   num_commands,
                   ringbuffer,
                   pos,
                   mask,
                   params,
                   lit_scratch_space,
                   cmd_scratch_space,
                   dst_scratch_space,
                   &mut (*mb).literal_split,
                   &mut (*mb).command_split,
                   &mut (*mb).distance_split);
  if (*params).disable_literal_context_modeling == 0 {
    literal_context_multiplier = (1i32 << 6i32) as (usize);
    literal_context_modes = <Alloc as Allocator<ContextType>>::alloc_cell(alloc, (*mb).literal_split.num_types);
    for item in literal_context_modes.slice_mut().iter_mut() {
      *item = literal_context_mode;
    }
  }
  literal_histograms_size = (*mb).literal_split.num_types.wrapping_mul(literal_context_multiplier);
  literal_histograms = <Alloc as Allocator<HistogramLiteral>>::alloc_cell(alloc, literal_histograms_size);
  distance_histograms_size = (*mb).distance_split.num_types << 2i32;
  distance_histograms = <Alloc as Allocator<HistogramDistance>>::alloc_cell(alloc, distance_histograms_size);
  (*mb).command_histograms_size = (*mb).command_split.num_types;
  (*mb).command_histograms = <Alloc as Allocator<HistogramCommand>>::alloc_cell(alloc, (*mb).command_histograms_size);
  BrotliBuildHistogramsWithContext(cmds,
                                   num_commands,
                                   &mut (*mb).literal_split,
                                   &mut (*mb).command_split,
                                   &mut (*mb).distance_split,
                                   ringbuffer,
                                   pos,
                                   mask,
                                   prev_byte,
                                   prev_byte2,
                                   literal_context_modes.slice(),
                                   literal_histograms.slice_mut(),
                                   (*mb).command_histograms.slice_mut(),
                                   distance_histograms.slice_mut());
  <Alloc as Allocator<ContextType>>::free_cell(alloc, literal_context_modes);
  (*mb).literal_context_map_size = (*mb).literal_split.num_types << 6i32;
  (*mb).literal_context_map = <Alloc as Allocator<u32>>::alloc_cell(alloc, (*mb).literal_context_map_size);
  (*mb).literal_histograms_size = (*mb).literal_context_map_size;
  (*mb).literal_histograms = <Alloc as Allocator<HistogramLiteral>>::alloc_cell(alloc, (*mb).literal_histograms_size);
  BrotliClusterHistograms(alloc,
                          literal_histograms.slice(),
                          literal_histograms_size,
                          kMaxNumberOfHistograms,
                          lit_scratch_space,
                          (*mb).literal_histograms.slice_mut(),
                          &mut (*mb).literal_histograms_size,
                          (*mb).literal_context_map.slice_mut());
  <Alloc as Allocator<HistogramLiteral>>::free_cell(alloc, literal_histograms);
  if (*params).disable_literal_context_modeling != 0 {
    i = (*mb).literal_split.num_types;
    while i != 0usize {
      let mut j: usize = 0usize;
      i = i.wrapping_sub(1 as (usize));
      while j < (1i32 << 6i32) as (usize) {
        {
          let val = (*mb).literal_context_map.slice()[(i as (usize))];
          (*mb).literal_context_map.slice_mut()[((i << 6i32).wrapping_add(j) as (usize))] = val;
        }
        j = j.wrapping_add(1 as (usize));
      }
    }
  }
  (*mb).distance_context_map_size = (*mb).distance_split.num_types << 2i32;
  (*mb).distance_context_map = <Alloc as Allocator<u32>>::alloc_cell(alloc, (*mb).distance_context_map_size);
  (*mb).distance_histograms_size = (*mb).distance_context_map_size;
  (*mb).distance_histograms = <Alloc as Allocator<HistogramDistance>>::alloc_cell(alloc, (*mb).distance_histograms_size);
  BrotliClusterHistograms(alloc,
                          distance_histograms.slice(),
                          (*mb).distance_context_map_size,
                          kMaxNumberOfHistograms,
                          dst_scratch_space,
                          (*mb).distance_histograms.slice_mut(),
                          &mut (*mb).distance_histograms_size,
                          (*mb).distance_context_map.slice_mut());
  <Alloc as Allocator<HistogramDistance>>::free_cell(alloc, distance_histograms);
}

/*
pub struct BlockSplitter<'a, HistogramType:SliceWrapper<u32>+SliceWrapperMut<u32> +CostAccessors,
                         AllocU8:alloc::Allocator<u8>+'a,
                         AllocU32:alloc::Allocator<u32>+'a,
                         AllocHT:alloc::Allocator<HistogramType>+'a > {
                         */
pub struct BlockSplitter {
  pub alphabet_size_: usize,
  pub min_block_size_: usize,
  pub split_threshold_: super::util::floatX,
  pub num_blocks_: usize,
  //  pub split_: &'a mut BlockSplit<AllocU8, AllocU32>,
  //  pub histograms_: AllocHT::AllocatedMemory, // FIXME: pull this one out at the end
  //  pub histograms_size_: &'a mut usize, // FIXME: pull this one out at the end
  pub target_block_size_: usize,
  pub block_size_: usize,
  pub curr_histogram_ix_: usize,
  pub last_histogram_ix_: [usize; 2],
  pub last_entropy_: [super::util::floatX; 2],
  pub merge_last_count_: usize,
}



pub struct ContextBlockSplitter {
  pub alphabet_size_: usize,
  pub num_contexts_: usize,
  pub max_block_types_: usize,
  pub min_block_size_: usize,
  pub split_threshold_: super::util::floatX,
  pub num_blocks_: usize,
  //  pub split_: &'a mut BlockSplit<AllocU8, AllocU32>,
  //  pub histograms_: AllocHL::AllocatedMemory,
  //  pub histograms_size_: &'a mut usize, // FIXME: pull this one out at the end
  pub target_block_size_: usize,
  pub block_size_: usize,
  pub curr_histogram_ix_: usize,
  pub last_histogram_ix_: [usize; 2],
  pub last_entropy_: [super::util::floatX; 2 * BROTLI_MAX_STATIC_CONTEXTS],
  pub merge_last_count_: usize,
}



enum LitBlocks {
  plain(BlockSplitter), //<'a, HistogramLiteral, AllocU8, AllocU32, AllocHL>,
  ctx(ContextBlockSplitter), //<'a, AllocU8, AllocU32, AllocHL>,
}

/*

pub struct BlockSplitterCommand {
  pub alphabet_size_: usize,
  pub min_block_size_: usize,
  pub split_threshold_: super::util::floatX,
  pub num_blocks_: usize,
  pub split_: *mut BlockSplit,
  pub histograms_: *mut HistogramCommand,
  pub histograms_size_: *mut usize,
  pub target_block_size_: usize,
  pub block_size_: usize,
  pub curr_histogram_ix_: usize,
  pub last_histogram_ix_: [usize; 2],
  pub last_entropy_: [super::util::floatX; 2],
  pub merge_last_count_: usize,
}



pub struct BlockSplitterDistance {
  pub alphabet_size_: usize,
  pub min_block_size_: usize,
  pub split_threshold_: super::util::floatX,
  pub num_blocks_: usize,
  pub split_: *mut BlockSplit,
  pub histograms_: *mut HistogramDistance,
  pub histograms_size_: *mut usize,
  pub target_block_size_: usize,
  pub block_size_: usize,
  pub curr_histogram_ix_: usize,
  pub last_histogram_ix_: [usize; 2],
  pub last_entropy_: [super::util::floatX; 2],
  pub merge_last_count_: usize,
}
*/

fn InitBlockSplitter<HistogramType: SliceWrapper<u32> + SliceWrapperMut<u32> + CostAccessors,
                     Alloc: alloc::Allocator<u8> + alloc::Allocator<u32> + alloc::Allocator<HistogramType>>
  (alloc: &mut Alloc,
   alphabet_size: usize,
   min_block_size: usize,
   split_threshold: super::util::floatX,
   num_symbols: usize,
   split: &mut BlockSplit<Alloc>,
   histograms: &mut <Alloc as Allocator<HistogramType>>::AllocatedMemory,
   histograms_size: &mut usize)
   -> BlockSplitter {
  let max_num_blocks: usize = num_symbols.wrapping_div(min_block_size).wrapping_add(1usize);
  let max_num_types: usize = brotli_min_size_t(max_num_blocks, (256i32 + 1i32) as (usize));
  let mut xself = BlockSplitter {
    last_entropy_: [0.0 as super::util::floatX; 2],
    alphabet_size_: alphabet_size,
    min_block_size_: min_block_size,
    split_threshold_: split_threshold,
    num_blocks_: 0usize,
    //(*xself).split_ : split,
    //(*xself).histograms_size_ : histograms_size,
    target_block_size_: min_block_size,
    block_size_: 0usize,
    curr_histogram_ix_: 0usize,
    merge_last_count_: 0usize,
    last_histogram_ix_: [0usize; 2],
  };
  {
    if (*split).types.slice().len() < max_num_blocks {
      let mut _new_size: usize = if (*split).types.slice().len() == 0usize {
        max_num_blocks
      } else {
        (*split).types.slice().len()
      };
      let mut new_array: <Alloc as Allocator<u8>>::AllocatedMemory;
      while _new_size < max_num_blocks {
        _new_size = _new_size.wrapping_mul(2usize);
      }
      new_array = <Alloc as Allocator<u8>>::alloc_cell(alloc, _new_size);
      if ((*split).types.slice().len() != 0usize) {
        new_array.slice_mut()[..(*split).types.slice().len()].clone_from_slice((*split)
                                                                                 .types
                                                                                 .slice());
      }
      <Alloc as Allocator<u8>>::free_cell(alloc, core::mem::replace(&mut (*split).types, new_array));
    }
  }
  {
    if (*split).lengths.slice().len() < max_num_blocks {
      let mut _new_size: usize = if (*split).lengths.slice().len() == 0usize {
        max_num_blocks
      } else {
        (*split).lengths.slice().len()
      };
      while _new_size < max_num_blocks {
        _new_size = _new_size.wrapping_mul(2usize);
      }
      let mut new_array = <Alloc as Allocator<u32>>::alloc_cell(alloc, _new_size);
      new_array.slice_mut()[..(*split).lengths.slice().len()].clone_from_slice((*split)
                                                                                 .lengths
                                                                                 .slice());
      <Alloc as Allocator<u32>>::free_cell(alloc, core::mem::replace(&mut (*split).lengths, new_array));
    }
  }
  (*split).num_blocks = max_num_blocks;
  *histograms_size = max_num_types;
  let hlocal = <Alloc as Allocator<HistogramType>>::alloc_cell(alloc, *histograms_size);
  <Alloc as Allocator<HistogramType>>::free_cell(alloc, core::mem::replace(&mut *histograms, hlocal));
  HistogramClear(&mut histograms.slice_mut()[0]);
  xself.last_histogram_ix_[0] = 0;
  xself.last_histogram_ix_[1] = 0;
  return xself;
}
fn InitContextBlockSplitter<Alloc: alloc::Allocator<u8> + alloc::Allocator<u32> + alloc::Allocator<HistogramLiteral>>
  (alloc: &mut Alloc,
   alphabet_size: usize,
   num_contexts: usize,
   min_block_size: usize,
   split_threshold: super::util::floatX,
   num_symbols: usize,
   split: &mut BlockSplit<Alloc>,
   histograms: &mut <Alloc as Allocator<HistogramLiteral>>::AllocatedMemory,
   histograms_size: &mut usize)
   -> ContextBlockSplitter {
  let max_num_blocks: usize = num_symbols.wrapping_div(min_block_size).wrapping_add(1usize);
  let max_num_types: usize;
  assert!(num_contexts <= BROTLI_MAX_STATIC_CONTEXTS);
  let mut xself = ContextBlockSplitter {
    alphabet_size_: alphabet_size,
    num_contexts_: num_contexts,
    max_block_types_: (256usize).wrapping_div(num_contexts),
    min_block_size_: min_block_size,
    split_threshold_: split_threshold,
    num_blocks_: 0usize,
    //        histograms_size_: histograms_size,
    target_block_size_: min_block_size,
    block_size_: 0usize,
    curr_histogram_ix_: 0usize,
    merge_last_count_: 0usize,
    last_histogram_ix_: [0; 2],
    last_entropy_: [0.0 as super::util::floatX; 2 * BROTLI_MAX_STATIC_CONTEXTS],
  };
  max_num_types = brotli_min_size_t(max_num_blocks, xself.max_block_types_.wrapping_add(1usize));
  {
    if (*split).types.slice().len() < max_num_blocks {
      let mut _new_size: usize = if (*split).types.slice().len() == 0usize {
        max_num_blocks
      } else {
        (*split).types.slice().len()
      };
      while _new_size < max_num_blocks {
        _new_size = _new_size.wrapping_mul(2usize);
      }
      let mut new_array = <Alloc as Allocator<u8>>::alloc_cell(alloc, _new_size);
      if ((*split).types.slice().len() != 0usize) {
        new_array.slice_mut()[..(*split).types.slice().len()].clone_from_slice((*split)
                                                                                 .types
                                                                                 .slice());
      }
      <Alloc as Allocator<u8>>::free_cell(alloc, core::mem::replace(&mut (*split).types, new_array));
    }
  }
  {
    if (*split).lengths.slice().len() < max_num_blocks {
      let mut _new_size: usize = if (*split).lengths.slice().len() == 0usize {
        max_num_blocks
      } else {
        (*split).lengths.slice().len()
      };
      while _new_size < max_num_blocks {
        _new_size = _new_size.wrapping_mul(2usize);
      }
      let mut new_array = <Alloc as Allocator<u32>>::alloc_cell(alloc, _new_size);
      if ((*split).lengths.slice().len() != 0usize) {
        new_array.slice_mut()[..(*split).lengths.slice().len()].clone_from_slice((*split)
                                                                                   .lengths
                                                                                   .slice());
      }
      <Alloc as Allocator<u32>>::free_cell(alloc, core::mem::replace(&mut (*split).lengths, new_array));
    }
  }
  (*split).num_blocks = max_num_blocks;
  *histograms_size = max_num_types.wrapping_mul(num_contexts);
  *histograms = <Alloc as Allocator<HistogramLiteral>>::alloc_cell(alloc, *histograms_size);
  //(*xself).histograms_ = *histograms;
  ClearHistograms(&mut histograms.slice_mut()[(0usize)..], num_contexts);
  xself.last_histogram_ix_[0] = 0;
  xself.last_histogram_ix_[1] = 0;
  return xself;
}

fn BlockSplitterFinishBlock<HistogramType:SliceWrapper<u32>
                                          +SliceWrapperMut<u32>
                                          +CostAccessors
                                          +Clone,
                            Alloc:alloc::Allocator<u8> + alloc::Allocator<u32>>(xself: &mut BlockSplitter,
                                                            split: &mut BlockSplit<Alloc>,
                                                            histograms: &mut [HistogramType],
                                                            histograms_size: &mut usize,
is_final: i32){
  (*xself).block_size_ = brotli_max_size_t((*xself).block_size_, (*xself).min_block_size_);
  if (*xself).num_blocks_ == 0usize {
    (*split).lengths.slice_mut()[(0usize)] = (*xself).block_size_ as (u32);
    (*split).types.slice_mut()[(0usize)] = 0i32 as (u8);
    (*xself).last_entropy_[(0usize)] = BitsEntropy((histograms[(0usize)]).slice(),
                                                   (*xself).alphabet_size_);
    (*xself).last_entropy_[(1usize)] = (*xself).last_entropy_[(0usize)];
    (*xself).num_blocks_ = (*xself).num_blocks_.wrapping_add(1 as (usize));
    (*split).num_types = (*split).num_types.wrapping_add(1 as (usize));
    (*xself).curr_histogram_ix_ = (*xself).curr_histogram_ix_.wrapping_add(1 as (usize));
    if (*xself).curr_histogram_ix_ < *histograms_size {
      HistogramClear(&mut histograms[((*xself).curr_histogram_ix_ as (usize))]);
    }
    (*xself).block_size_ = 0usize;
  } else if (*xself).block_size_ > 0usize {
    let entropy: super::util::floatX = BitsEntropy((histograms[((*xself).curr_histogram_ix_ as (usize))]).slice(),
                                   (*xself).alphabet_size_);
    let mut combined_histo: [HistogramType; 2] = [histograms[(*xself).curr_histogram_ix_].clone(),
                                                  histograms[(*xself).curr_histogram_ix_].clone()];

    let mut combined_entropy: [super::util::floatX; 2] = [0.0 as super::util::floatX, 0.0 as super::util::floatX];
    let mut diff: [super::util::floatX; 2] = [0.0 as super::util::floatX, 0.0 as super::util::floatX];
    for j in 0..2 {
      {
        let last_histogram_ix: usize = (*xself).last_histogram_ix_[j];
        HistogramAddHistogram(&mut combined_histo[j],
                              &histograms[(last_histogram_ix as (usize))]);
        combined_entropy[j] = BitsEntropy(&mut combined_histo[j].slice_mut()[0usize..],
                                          (*xself).alphabet_size_);
        diff[j] = combined_entropy[j] - entropy - (*xself).last_entropy_[(j as (usize))];
      }
    }
    if (*split).num_types < 256usize && (diff[0usize] > (*xself).split_threshold_) &&
       (diff[1usize] > (*xself).split_threshold_) {
      (*split).lengths.slice_mut()[((*xself).num_blocks_ as (usize))] = (*xself).block_size_ as
                                                                        (u32);
      (*split).types.slice_mut()[((*xself).num_blocks_ as (usize))] = (*split).num_types as (u8);
      (*xself).last_histogram_ix_[1usize] = (*xself).last_histogram_ix_[0usize];
      (*xself).last_histogram_ix_[0usize] = (*split).num_types as (u8) as (usize);
      (*xself).last_entropy_[(1usize)] = (*xself).last_entropy_[(0usize)];
      (*xself).last_entropy_[(0usize)] = entropy;
      (*xself).num_blocks_ = (*xself).num_blocks_.wrapping_add(1 as (usize));
      (*split).num_types = (*split).num_types.wrapping_add(1 as (usize));
      (*xself).curr_histogram_ix_ = (*xself).curr_histogram_ix_.wrapping_add(1 as (usize));
      if (*xself).curr_histogram_ix_ < *histograms_size {
        HistogramClear(&mut histograms[((*xself).curr_histogram_ix_ as (usize))]);
      }
      (*xself).block_size_ = 0usize;
      (*xself).merge_last_count_ = 0usize;
      (*xself).target_block_size_ = (*xself).min_block_size_;
    } else if diff[1usize] < diff[0usize] - 20.0 as super::util::floatX {
      (*split).lengths.slice_mut()[((*xself).num_blocks_ as (usize))] = (*xself).block_size_ as
                                                                        (u32);
      (*split).types.slice_mut()[((*xself).num_blocks_ as (usize))] = (*split).types.slice()
        [((*xself).num_blocks_.wrapping_sub(2usize) as (usize))]; //FIXME: investigate copy?
      {
        let mut __brotli_swap_tmp: usize = (*xself).last_histogram_ix_[0usize];
        (*xself).last_histogram_ix_[0usize] = (*xself).last_histogram_ix_[1usize];
        (*xself).last_histogram_ix_[1usize] = __brotli_swap_tmp;
      }
      histograms[((*xself).last_histogram_ix_[0usize] as (usize))] = combined_histo[1usize].clone();
      (*xself).last_entropy_[(1usize)] = (*xself).last_entropy_[(0usize)];
      (*xself).last_entropy_[(0usize)] = combined_entropy[1usize];
      (*xself).num_blocks_ = (*xself).num_blocks_.wrapping_add(1 as (usize));
      (*xself).block_size_ = 0usize;
      HistogramClear(&mut histograms[((*xself).curr_histogram_ix_ as (usize))]);
      (*xself).merge_last_count_ = 0usize;
      (*xself).target_block_size_ = (*xself).min_block_size_;
    } else {
      {
        let _rhs = (*xself).block_size_ as (u32);
        let _lhs = &mut (*split).lengths.slice_mut()[((*xself).num_blocks_.wrapping_sub(1usize) as
                         (usize))];
        *_lhs = (*_lhs).wrapping_add(_rhs);
      }
      histograms[((*xself).last_histogram_ix_[0usize] as (usize))] = combined_histo[0usize].clone();
      (*xself).last_entropy_[(0usize)] = combined_entropy[0usize];
      if (*split).num_types == 1usize {
        (*xself).last_entropy_[(1usize)] = (*xself).last_entropy_[(0usize)];
      }
      (*xself).block_size_ = 0usize;
      HistogramClear(&mut histograms[((*xself).curr_histogram_ix_ as (usize))]);
      if {
           (*xself).merge_last_count_ = (*xself).merge_last_count_.wrapping_add(1 as (usize));
           (*xself).merge_last_count_
         } > 1usize {
        (*xself).target_block_size_ =
          (*xself).target_block_size_.wrapping_add((*xself).min_block_size_);
      }
    }
  }
  if is_final != 0 {
    *histograms_size = (*split).num_types;
    (*split).num_blocks = (*xself).num_blocks_;
  }
}
const BROTLI_MAX_STATIC_CONTEXTS: usize = 13;

fn ContextBlockSplitterFinishBlock<Alloc: alloc::Allocator<u8> + alloc::Allocator<u32> + alloc::Allocator<HistogramLiteral>,
                                   AllocHL:alloc::Allocator<HistogramLiteral>>
  (xself: &mut ContextBlockSplitter,
   m : &mut AllocHL,
   split: &mut BlockSplit<Alloc>,
   histograms: &mut [HistogramLiteral],
   histograms_size: &mut usize,
   is_final: i32) {
  let num_contexts: usize = (*xself).num_contexts_;
  if (*xself).block_size_ < (*xself).min_block_size_ {
    (*xself).block_size_ = (*xself).min_block_size_;
  }
  if (*xself).num_blocks_ == 0usize {
    let mut i: usize;
    (*split).lengths.slice_mut()[(0usize)] = (*xself).block_size_ as (u32);
    (*split).types.slice_mut()[(0usize)] = 0i32 as (u8);
    i = 0usize;
    while i < num_contexts {
      {
        (*xself).last_entropy_[(i as (usize))] = BitsEntropy((histograms[(i as (usize))]).slice(),
                                                             (*xself).alphabet_size_);
        (*xself).last_entropy_[(num_contexts.wrapping_add(i) as (usize))] = (*xself).last_entropy_
          [(i as (usize))];
      }
      i = i.wrapping_add(1 as (usize));
    }
    (*xself).num_blocks_ = (*xself).num_blocks_.wrapping_add(1 as (usize));
    (*split).num_types = (*split).num_types.wrapping_add(1 as (usize));
    (*xself).curr_histogram_ix_ = (*xself).curr_histogram_ix_.wrapping_add(num_contexts);
    if (*xself).curr_histogram_ix_ < *histograms_size {
      ClearHistograms(&mut histograms[((*xself).curr_histogram_ix_ as (usize))..],
                      (*xself).num_contexts_);
    }
    (*xself).block_size_ = 0usize;
  } else if (*xself).block_size_ > 0usize {
    let mut entropy = [0.0 as super::util::floatX; BROTLI_MAX_STATIC_CONTEXTS];
    let mut combined_histo = m.alloc_cell(2 * num_contexts);
      let mut combined_entropy = [0.0 as super::util::floatX; 2 * BROTLI_MAX_STATIC_CONTEXTS];
    let mut diff: [super::util::floatX; 2] = [0.0 as super::util::floatX; 2];
    let mut i: usize;
    i = 0usize;
    while i < num_contexts {
      {
        let curr_histo_ix: usize = (*xself).curr_histogram_ix_.wrapping_add(i);
        let mut j: usize;
        entropy[i] = BitsEntropy(&(histograms[(curr_histo_ix as (usize))]).slice(),
                                 (*xself).alphabet_size_);
        j = 0usize;
        while j < 2usize {
          {
            let jx: usize = j.wrapping_mul(num_contexts).wrapping_add(i);
            let last_histogram_ix: usize = (*xself).last_histogram_ix_[j].wrapping_add(i);
            combined_histo.slice_mut()[jx] = histograms[(curr_histo_ix as (usize))].clone();
            HistogramAddHistogram(&mut combined_histo.slice_mut()[jx],
                                  &mut histograms[(last_histogram_ix as (usize))]);
            combined_entropy[jx] = BitsEntropy(combined_histo.slice()[jx].slice(), (*xself).alphabet_size_);
            {
              let _rhs = combined_entropy[jx] - entropy[i] -
                         (*xself).last_entropy_[(jx as (usize))];
              let _lhs = &mut diff[j];
              *_lhs = *_lhs + _rhs;
            }
          }
          j = j.wrapping_add(1 as (usize));
        }
      }
      i = i.wrapping_add(1 as (usize));
    }
    if (*split).num_types < (*xself).max_block_types_ &&
       (diff[0usize] > (*xself).split_threshold_) &&
       (diff[1usize] > (*xself).split_threshold_) {
      (*split).lengths.slice_mut()[((*xself).num_blocks_ as (usize))] = (*xself).block_size_ as
                                                                        (u32);
      (*split).types.slice_mut()[((*xself).num_blocks_ as (usize))] = (*split).num_types as (u8);
      (*xself).last_histogram_ix_[1usize] = (*xself).last_histogram_ix_[0usize];
      (*xself).last_histogram_ix_[0usize] = (*split).num_types.wrapping_mul(num_contexts);
      i = 0usize;
      while i < num_contexts {
        {
          (*xself).last_entropy_[(num_contexts.wrapping_add(i) as (usize))] =
            (*xself).last_entropy_[(i as (usize))];
          (*xself).last_entropy_[(i as (usize))] = entropy[i];
        }
        i = i.wrapping_add(1 as (usize));
      }
      (*xself).num_blocks_ = (*xself).num_blocks_.wrapping_add(1 as (usize));
      (*split).num_types = (*split).num_types.wrapping_add(1 as (usize));
      (*xself).curr_histogram_ix_ = (*xself).curr_histogram_ix_.wrapping_add(num_contexts);
      if (*xself).curr_histogram_ix_ < *histograms_size {
        ClearHistograms(&mut histograms[((*xself).curr_histogram_ix_ as (usize))..],
                        (*xself).num_contexts_);
      }
      (*xself).block_size_ = 0usize;
      (*xself).merge_last_count_ = 0usize;
      (*xself).target_block_size_ = (*xself).min_block_size_;
    } else if diff[1usize] < diff[0usize] - 20.0 as super::util::floatX {
      (*split).lengths.slice_mut()[((*xself).num_blocks_ as (usize))] = (*xself).block_size_ as
                                                                        (u32);
      let nbm2 = (*split).types.slice()[((*xself).num_blocks_.wrapping_sub(2usize) as (usize))];
      (*split).types.slice_mut()[((*xself).num_blocks_ as (usize))] = nbm2;

      {
        let mut __brotli_swap_tmp: usize = (*xself).last_histogram_ix_[0usize];
        (*xself).last_histogram_ix_[0usize] = (*xself).last_histogram_ix_[1usize];
        (*xself).last_histogram_ix_[1usize] = __brotli_swap_tmp;
      }
      i = 0usize;
      while i < num_contexts {
        {
          histograms[((*xself).last_histogram_ix_[0usize].wrapping_add(i) as (usize))] =
            combined_histo.slice()[num_contexts.wrapping_add(i)].clone();
          (*xself).last_entropy_[(num_contexts.wrapping_add(i) as (usize))] =
            (*xself).last_entropy_[(i as (usize))];
          (*xself).last_entropy_[(i as (usize))] = combined_entropy[num_contexts.wrapping_add(i)];
          HistogramClear(&mut histograms[((*xself).curr_histogram_ix_.wrapping_add(i) as (usize))]);
        }
        i = i.wrapping_add(1 as (usize));
      }
      (*xself).num_blocks_ = (*xself).num_blocks_.wrapping_add(1 as (usize));
      (*xself).block_size_ = 0usize;
      (*xself).merge_last_count_ = 0usize;
      (*xself).target_block_size_ = (*xself).min_block_size_;
    } else {
      {
        let _rhs = (*xself).block_size_ as (u32);
        let _lhs = &mut (*split).lengths.slice_mut()[((*xself).num_blocks_.wrapping_sub(1usize) as
                         (usize))];
        let old_split_length = *_lhs;
        *_lhs = old_split_length.wrapping_add(_rhs);
      }
      i = 0usize;
      while i < num_contexts {
        {
          histograms[((*xself).last_histogram_ix_[0usize].wrapping_add(i) as (usize))] =
            combined_histo.slice()[i].clone();
          (*xself).last_entropy_[(i as (usize))] = combined_entropy[i];
          if (*split).num_types == 1usize {
            (*xself).last_entropy_[(num_contexts.wrapping_add(i) as (usize))] =
              (*xself).last_entropy_[(i as (usize))];
          }
          HistogramClear(&mut histograms[((*xself).curr_histogram_ix_.wrapping_add(i) as (usize))]);
        }
        i = i.wrapping_add(1 as (usize));
      }
      (*xself).block_size_ = 0usize;
      if {
           (*xself).merge_last_count_ = (*xself).merge_last_count_.wrapping_add(1 as (usize));
           (*xself).merge_last_count_
         } > 1usize {
        (*xself).target_block_size_ =
          (*xself).target_block_size_.wrapping_add((*xself).min_block_size_);
      }
    }
    m.free_cell(combined_histo);
  }
  if is_final != 0 {
    *histograms_size = (*split).num_types.wrapping_mul(num_contexts);
    (*split).num_blocks = (*xself).num_blocks_;
  }
}

fn BlockSplitterAddSymbol<HistogramType:SliceWrapper<u32>
                                          +SliceWrapperMut<u32>
                                          +CostAccessors
                                          +Clone,
                            Alloc:alloc::Allocator<u8> + alloc::Allocator<u32>>(xself: &mut BlockSplitter,
                                                            split: &mut BlockSplit<Alloc>,
                                                            histograms: &mut [HistogramType],
                                                            histograms_size: &mut usize,
                                                            symbol: usize){
  HistogramAddItem(&mut histograms[((*xself).curr_histogram_ix_ as (usize))],
                   symbol);
  (*xself).block_size_ = (*xself).block_size_.wrapping_add(1 as (usize));
  if (*xself).block_size_ == (*xself).target_block_size_ {
    BlockSplitterFinishBlock(xself, split, histograms, histograms_size, 0i32);
  }
}

fn ContextBlockSplitterAddSymbol<Alloc: alloc::Allocator<u8> + alloc::Allocator<u32> + alloc::Allocator<HistogramLiteral>>
  (xself: &mut ContextBlockSplitter,
   m : &mut Alloc,
   split: &mut BlockSplit<Alloc>,
   histograms: &mut [HistogramLiteral],
   histograms_size: &mut usize,
   symbol: usize,
   context: usize) {
  HistogramAddItem(&mut histograms[((*xself).curr_histogram_ix_.wrapping_add(context) as (usize))],
                   symbol);
  (*xself).block_size_ = (*xself).block_size_.wrapping_add(1 as (usize));
  if (*xself).block_size_ == (*xself).target_block_size_ {
    ContextBlockSplitterFinishBlock(xself, m, split, histograms, histograms_size, 0i32);
  }
}

fn MapStaticContexts<Alloc: alloc::Allocator<u8> + alloc::Allocator<u32> + alloc::Allocator<HistogramLiteral>+ alloc::Allocator<HistogramCommand> + alloc::Allocator<HistogramDistance>>
  (m32: &mut Alloc,
   num_contexts: usize,
   static_context_map: &[u32],
   mb: &mut MetaBlockSplit<Alloc>) {
  let mut i: usize;
  (*mb).literal_context_map_size = (*mb).literal_split.num_types << 6i32;
  let new_literal_context_map = <Alloc as Allocator<u32>>::alloc_cell(m32, (*mb).literal_context_map_size);
  <Alloc as Allocator<u32>>::free_cell(m32, core::mem::replace(&mut (*mb).literal_context_map, new_literal_context_map));
  i = 0usize;
  while i < (*mb).literal_split.num_types {
    {
      let offset: u32 = i.wrapping_mul(num_contexts) as (u32);
      let mut j: usize;
      j = 0usize;
      while j < (1u32 << 6i32) as (usize) {
        {
          (*mb).literal_context_map.slice_mut()[((i << 6i32).wrapping_add(j) as (usize))] =
            offset.wrapping_add(static_context_map[(j as (usize))]);
        }
        j = j.wrapping_add(1 as (usize));
      }
    }
    i = i.wrapping_add(1 as (usize));
  }
}
pub fn BrotliBuildMetaBlockGreedyInternal<Alloc: alloc::Allocator<u8> + alloc::Allocator<u32> + alloc::Allocator<HistogramLiteral> + alloc::Allocator<HistogramCommand> + alloc::Allocator<HistogramDistance>>
  (alloc: &mut Alloc,
   ringbuffer: &[u8],
   mut pos: usize,
   mask: usize,
   mut prev_byte: u8,
   mut prev_byte2: u8,
   literal_context_mode: ContextType,
   num_contexts: usize,
   static_context_map: &[u32],
   commands: &[Command],
   n_commands: usize,
   mb: &mut MetaBlockSplit<Alloc>) {
  let mut lit_blocks: LitBlocks;
  let mut cmd_blocks: BlockSplitter;
  let mut dist_blocks: BlockSplitter;
  let mut num_literals: usize = 0usize;
  let mut i: usize;
  i = 0usize;
  while i < n_commands {
    {
      num_literals = num_literals.wrapping_add((commands[(i as (usize))]).insert_len_ as (usize));
    }
    i = i.wrapping_add(1 as (usize));
  }
  lit_blocks = if num_contexts == 1usize {
    LitBlocks::plain(InitBlockSplitter::<HistogramLiteral, Alloc>(alloc,
                                       256usize,
                                       512usize,
                                       400.0 as super::util::floatX,
                                       num_literals,
                                       &mut (*mb).literal_split,
                                       &mut (*mb).literal_histograms,
                                       &mut (*mb).literal_histograms_size))
  } else {
    LitBlocks::ctx(InitContextBlockSplitter::<Alloc>(alloc,
                                            256usize,
                                            num_contexts,
                                            512usize,
                                            400.0 as super::util::floatX,
                                            num_literals,
                                            &mut (*mb).literal_split,
                                            &mut (*mb).literal_histograms,
                                            &mut (*mb).literal_histograms_size))
  };
  cmd_blocks = InitBlockSplitter::<HistogramCommand, Alloc>(alloc,
                                 704usize,
                                 1024usize,
                                 500.0 as super::util::floatX,
                                 n_commands,
                                 &mut (*mb).command_split,
                                 &mut (*mb).command_histograms,
                                 &mut (*mb).command_histograms_size);
  dist_blocks = InitBlockSplitter::<HistogramDistance, Alloc>(alloc,
                                  64usize,
                                  512usize,
                                  100.0 as super::util::floatX,
                                  n_commands,
                                  &mut (*mb).distance_split,
                                  &mut (*mb).distance_histograms,
                                  &mut (*mb).distance_histograms_size);

  i = 0usize;
  while i < n_commands {
    {
      let cmd: Command = commands[(i as (usize))].clone();
      let mut j: usize;
      BlockSplitterAddSymbol(&mut cmd_blocks,
                             &mut (*mb).command_split,
                             &mut (*mb).command_histograms.slice_mut(),
                             &mut (*mb).command_histograms_size,
                             cmd.cmd_prefix_ as (usize));
      j = cmd.insert_len_ as (usize);
      while j != 0usize {
        {
          let literal: u8 = ringbuffer[((pos & mask) as (usize))];
          match (&mut lit_blocks) {
            &mut LitBlocks::plain(ref mut lit_blocks_plain) => {
              BlockSplitterAddSymbol(lit_blocks_plain,
                                     &mut (*mb).literal_split,
                                     &mut (*mb).literal_histograms.slice_mut(),
                                     &mut (*mb).literal_histograms_size,
                                     literal as (usize))
            }
            &mut LitBlocks::ctx(ref mut lit_blocks_ctx) => {
              let context: usize = Context(prev_byte, prev_byte2, literal_context_mode) as (usize);
              ContextBlockSplitterAddSymbol(lit_blocks_ctx,
                                            alloc,
                                            &mut (*mb).literal_split,
                                            &mut (*mb).literal_histograms.slice_mut(),
                                            &mut (*mb).literal_histograms_size,
                                            literal as (usize),
                                            static_context_map[(context as (usize))] as (usize));
            }
          }
          prev_byte2 = prev_byte;
          prev_byte = literal;
          pos = pos.wrapping_add(1 as (usize));
        }
        j = j.wrapping_sub(1 as (usize));
      }
      pos = pos.wrapping_add(CommandCopyLen(&cmd) as (usize));
      if CommandCopyLen(&cmd) != 0 {
        prev_byte2 = ringbuffer[((pos.wrapping_sub(2usize) & mask) as (usize))];
        prev_byte = ringbuffer[((pos.wrapping_sub(1usize) & mask) as (usize))];
        if cmd.cmd_prefix_ as (i32) >= 128i32 {
          BlockSplitterAddSymbol(&mut dist_blocks,
                                 &mut (*mb).distance_split,
                                 &mut (*mb).distance_histograms.slice_mut(),
                                 &mut (*mb).distance_histograms_size,
                                 cmd.dist_prefix_ as (usize) & 0x3ff);
        }
      }
    }
    i = i.wrapping_add(1 as (usize));
  }
  match (&mut lit_blocks) {
    &mut LitBlocks::plain(ref mut lit_blocks_plain) => {
      BlockSplitterFinishBlock(lit_blocks_plain,
                               &mut (*mb).literal_split,
                               &mut (*mb).literal_histograms.slice_mut(),
                               &mut (*mb).literal_histograms_size,
                               1i32)
    }
    &mut LitBlocks::ctx(ref mut lit_blocks_ctx) => {
      ContextBlockSplitterFinishBlock(lit_blocks_ctx,
                                      alloc,
                                      &mut (*mb).literal_split,
                                      &mut (*mb).literal_histograms.slice_mut(),
                                      &mut (*mb).literal_histograms_size,
                                      1i32)
    }
  }
  BlockSplitterFinishBlock(&mut cmd_blocks,
                           &mut (*mb).command_split,
                           &mut (*mb).command_histograms.slice_mut(),
                           &mut (*mb).command_histograms_size,
                           1i32);
  BlockSplitterFinishBlock(&mut dist_blocks,
                           &mut (*mb).distance_split,
                           &mut (*mb).distance_histograms.slice_mut(),
                           &mut (*mb).distance_histograms_size,
                           1i32);
  if num_contexts > 1usize {
    MapStaticContexts(alloc, num_contexts, static_context_map, mb);
  }
}
pub fn BrotliBuildMetaBlockGreedy<Alloc: alloc::Allocator<u8> + alloc::Allocator<u32> + alloc::Allocator<HistogramLiteral> + alloc::Allocator<HistogramCommand> + alloc::Allocator<HistogramDistance>>
  (alloc: &mut Alloc,
   ringbuffer: &[u8],
   pos: usize,
   mask: usize,
   prev_byte: u8,
   prev_byte2: u8,
   literal_context_mode: ContextType,
   _literal_context_lut: &[u8],
   num_contexts: usize,
   static_context_map: &[u32],
   commands: &[Command],
   n_commands: usize,
   mb: &mut MetaBlockSplit<Alloc>) {
  if num_contexts == 1usize {
    BrotliBuildMetaBlockGreedyInternal(alloc,
                                       ringbuffer,
                                       pos,
                                       mask,
                                       prev_byte,
                                       prev_byte2,
                                       literal_context_mode,
                                       1usize,
                                       &[],
                                       commands,
                                       n_commands,
                                       mb);
  } else {
    BrotliBuildMetaBlockGreedyInternal(alloc,
                                       ringbuffer,
                                       pos,
                                       mask,
                                       prev_byte,
                                       prev_byte2,
                                       literal_context_mode,
                                       num_contexts,
                                       static_context_map,
                                       commands,
                                       n_commands,
                                       mb);
  }
}


pub fn BrotliOptimizeHistograms<Alloc: alloc::Allocator<u8> + alloc::Allocator<u32> + alloc::Allocator<HistogramLiteral> + alloc::Allocator<HistogramCommand> + alloc::Allocator<HistogramDistance>>
  (num_distance_codes: usize,
   mb: &mut MetaBlockSplit<Alloc>) {
  let mut good_for_rle: [u8; 704] = [0; 704];
  let mut i: usize;
  i = 0usize;
  while i < (*mb).literal_histograms_size {
    {
      BrotliOptimizeHuffmanCountsForRle(256usize,
                                        (*mb).literal_histograms.slice_mut()[(i as (usize))]
                                          .slice_mut(),
                                        &mut good_for_rle[..]);
    }
    i = i.wrapping_add(1 as (usize));
  }
  i = 0usize;
  while i < (*mb).command_histograms_size {
    {
      BrotliOptimizeHuffmanCountsForRle(704usize,
                                        (*mb).command_histograms.slice_mut()[(i as (usize))]
                                          .slice_mut(),
                                        &mut good_for_rle[..]);
    }
    i = i.wrapping_add(1 as (usize));
  }
  i = 0usize;
  while i < (*mb).distance_histograms_size {
    {
      BrotliOptimizeHuffmanCountsForRle(num_distance_codes,
                                        (*mb).distance_histograms.slice_mut()[(i as (usize))]
                                          .slice_mut(),
                                        &mut good_for_rle[..]);
    }
    i = i.wrapping_add(1 as (usize));
  }
}