Home
last modified time | relevance | path

Searched refs:cmd_histo (Results 1 – 3 of 3) sorted by relevance

/external/brotli/c/enc/
Dcompress_fragment.c430 uint32_t cmd_histo[128]; in BrotliCompressFragmentFastImpl() local
487 memcpy(cmd_histo, kCmdHistoSeed, sizeof(kCmdHistoSeed)); in BrotliCompressFragmentFastImpl()
570 EmitInsertLen(insert, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
581 EmitLongInsertLen(insert, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
588 ++cmd_histo[64]; in BrotliCompressFragmentFastImpl()
591 cmd_histo, storage_ix, storage); in BrotliCompressFragmentFastImpl()
594 EmitCopyLenLastDistance(matched, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
629 EmitCopyLen(matched, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
632 cmd_histo, storage_ix, storage); in BrotliCompressFragmentFastImpl()
684 EmitInsertLen(insert, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
[all …]
Dcompress_fragment_two_pass.c478 uint32_t cmd_histo[128] = { 0 }; in StoreCommands() local
492 ++cmd_histo[code]; in StoreCommands()
494 cmd_histo[1] += 1; in StoreCommands()
495 cmd_histo[2] += 1; in StoreCommands()
496 cmd_histo[64] += 1; in StoreCommands()
497 cmd_histo[84] += 1; in StoreCommands()
498 BuildAndStoreCommandPrefixCode(cmd_histo, cmd_depths, cmd_bits, in StoreCommands()
Dbrotli_bit_stream.c1092 HistogramCommand* cmd_histo, in BuildHistograms() argument
1099 HistogramAddCommand(cmd_histo, cmd.cmd_prefix_); in BuildHistograms()
1157 HistogramCommand cmd_histo; in BrotliStoreMetaBlockTrivial() local
1171 HistogramClearCommand(&cmd_histo); in BrotliStoreMetaBlockTrivial()
1175 &lit_histo, &cmd_histo, &dist_histo); in BrotliStoreMetaBlockTrivial()
1185 BuildAndStoreHuffmanTree(cmd_histo.data_, BROTLI_NUM_COMMAND_SYMBOLS, in BrotliStoreMetaBlockTrivial()
1250 HistogramCommand cmd_histo; in BrotliStoreMetaBlockFast() local
1259 HistogramClearCommand(&cmd_histo); in BrotliStoreMetaBlockFast()
1262 &lit_histo, &cmd_histo, &dist_histo); in BrotliStoreMetaBlockFast()
1269 BrotliBuildAndStoreHuffmanTreeFast(m, cmd_histo.data_, in BrotliStoreMetaBlockFast()
[all …]