Home
last modified time | relevance | path

Searched refs:prev_byte (Results 1 - 15 of 15) sorted by relevance

/third_party/node/deps/brotli/c/enc/
H A Dhistogram.c47 size_t mask, uint8_t prev_byte, uint8_t prev_byte2, in BrotliBuildHistogramsWithContext()
74 BROTLI_CONTEXT(prev_byte, prev_byte2, lut); in BrotliBuildHistogramsWithContext()
78 prev_byte2 = prev_byte; in BrotliBuildHistogramsWithContext()
79 prev_byte = ringbuffer[pos & mask]; in BrotliBuildHistogramsWithContext()
85 prev_byte = ringbuffer[(pos - 1) & mask]; in BrotliBuildHistogramsWithContext()
43 BrotliBuildHistogramsWithContext( const Command* cmds, const size_t num_commands, const BlockSplit* literal_split, const BlockSplit* insert_and_copy_split, const BlockSplit* dist_split, const uint8_t* ringbuffer, size_t start_pos, size_t mask, uint8_t prev_byte, uint8_t prev_byte2, const ContextType* context_modes, HistogramLiteral* literal_histograms, HistogramCommand* insert_and_copy_histograms, HistogramDistance* copy_dist_histograms) BrotliBuildHistogramsWithContext() argument
H A Dmetablock.c131 uint8_t prev_byte, in BrotliBuildMetaBlock()
228 ringbuffer, pos, mask, prev_byte, prev_byte2, literal_context_modes, in BrotliBuildMetaBlock()
540 uint8_t prev_byte, uint8_t prev_byte2, ContextLut literal_context_lut, in BrotliBuildMetaBlockGreedyInternal()
584 BROTLI_CONTEXT(prev_byte, prev_byte2, literal_context_lut); in BrotliBuildMetaBlockGreedyInternal()
589 prev_byte2 = prev_byte; in BrotliBuildMetaBlockGreedyInternal()
590 prev_byte = literal; in BrotliBuildMetaBlockGreedyInternal()
596 prev_byte = ringbuffer[(pos - 1) & mask]; in BrotliBuildMetaBlockGreedyInternal()
623 uint8_t prev_byte, in BrotliBuildMetaBlockGreedy()
632 BrotliBuildMetaBlockGreedyInternal(m, ringbuffer, pos, mask, prev_byte, in BrotliBuildMetaBlockGreedy()
635 BrotliBuildMetaBlockGreedyInternal(m, ringbuffer, pos, mask, prev_byte, in BrotliBuildMetaBlockGreedy()
126 BrotliBuildMetaBlock(MemoryManager* m, const uint8_t* ringbuffer, const size_t pos, const size_t mask, BrotliEncoderParams* params, uint8_t prev_byte, uint8_t prev_byte2, Command* cmds, size_t num_commands, ContextType literal_context_mode, MetaBlockSplit* mb) BrotliBuildMetaBlock() argument
538 BrotliBuildMetaBlockGreedyInternal( MemoryManager* m, const uint8_t* ringbuffer, size_t pos, size_t mask, uint8_t prev_byte, uint8_t prev_byte2, ContextLut literal_context_lut, const size_t num_contexts, const uint32_t* static_context_map, const Command* commands, size_t n_commands, MetaBlockSplit* mb) BrotliBuildMetaBlockGreedyInternal() argument
619 BrotliBuildMetaBlockGreedy(MemoryManager* m, const uint8_t* ringbuffer, size_t pos, size_t mask, uint8_t prev_byte, uint8_t prev_byte2, ContextLut literal_context_lut, size_t num_contexts, const uint32_t* static_context_map, const Command* commands, size_t n_commands, MetaBlockSplit* mb) BrotliBuildMetaBlockGreedy() argument
[all...]
H A Dmetablock.h79 uint8_t prev_byte,
91 uint8_t prev_byte, uint8_t prev_byte2, ContextLut literal_context_lut,
H A Dhistogram.h54 size_t mask, uint8_t prev_byte, uint8_t prev_byte2,
H A Dbrotli_bit_stream.h46 uint8_t prev_byte, uint8_t prev_byte2, BROTLI_BOOL is_last,
H A Dencode.c561 const uint8_t prev_byte, in WriteMetaBlockInternal()
622 prev_byte, prev_byte2, literal_context_lut, num_literal_contexts, in WriteMetaBlockInternal()
627 prev_byte, prev_byte2, in WriteMetaBlockInternal()
640 prev_byte, prev_byte2, in WriteMetaBlockInternal()
1230 uint8_t prev_byte = 0; in BrotliCompressBufferQuality10() local
1356 prev_byte, prev_byte2, in BrotliCompressBufferQuality10()
1372 mask, prev_byte, prev_byte2, in BrotliCompressBufferQuality10()
1396 prev_byte = input_buffer[metablock_start - 1]; in BrotliCompressBufferQuality10()
553 WriteMetaBlockInternal(MemoryManager* m, const uint8_t* data, const size_t mask, const uint64_t last_flush_pos, const size_t bytes, const BROTLI_BOOL is_last, ContextType literal_context_mode, const BrotliEncoderParams* params, const uint8_t prev_byte, const uint8_t prev_byte2, const size_t num_literals, const size_t num_commands, Command* commands, const int* saved_dist_cache, int* dist_cache, size_t* storage_ix, uint8_t* storage) WriteMetaBlockInternal() argument
H A Dbrotli_bit_stream.c937 uint8_t prev_byte, uint8_t prev_byte2, BROTLI_BOOL is_last, in BrotliStoreMetaBlock()
1031 BROTLI_CONTEXT(prev_byte, prev_byte2, literal_context_lut); in BrotliStoreMetaBlock()
1036 prev_byte2 = prev_byte; in BrotliStoreMetaBlock()
1037 prev_byte = literal; in BrotliStoreMetaBlock()
1044 prev_byte = input[(pos - 1) & mask]; in BrotliStoreMetaBlock()
935 BrotliStoreMetaBlock(MemoryManager* m, const uint8_t* input, size_t start_pos, size_t length, size_t mask, uint8_t prev_byte, uint8_t prev_byte2, BROTLI_BOOL is_last, const BrotliEncoderParams* params, ContextType literal_context_mode, const Command* commands, size_t n_commands, const MetaBlockSplit* mb, size_t* storage_ix, uint8_t* storage) BrotliStoreMetaBlock() argument
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dhistogram.c47 size_t mask, uint8_t prev_byte, uint8_t prev_byte2, in BrotliBuildHistogramsWithContext()
74 BROTLI_CONTEXT(prev_byte, prev_byte2, lut); in BrotliBuildHistogramsWithContext()
78 prev_byte2 = prev_byte; in BrotliBuildHistogramsWithContext()
79 prev_byte = ringbuffer[pos & mask]; in BrotliBuildHistogramsWithContext()
85 prev_byte = ringbuffer[(pos - 1) & mask]; in BrotliBuildHistogramsWithContext()
43 BrotliBuildHistogramsWithContext( const Command* cmds, const size_t num_commands, const BlockSplit* literal_split, const BlockSplit* insert_and_copy_split, const BlockSplit* dist_split, const uint8_t* ringbuffer, size_t start_pos, size_t mask, uint8_t prev_byte, uint8_t prev_byte2, const ContextType* context_modes, HistogramLiteral* literal_histograms, HistogramCommand* insert_and_copy_histograms, HistogramDistance* copy_dist_histograms) BrotliBuildHistogramsWithContext() argument
H A Dmetablock.c131 uint8_t prev_byte, in BrotliBuildMetaBlock()
228 ringbuffer, pos, mask, prev_byte, prev_byte2, literal_context_modes, in BrotliBuildMetaBlock()
540 uint8_t prev_byte, uint8_t prev_byte2, ContextLut literal_context_lut, in BrotliBuildMetaBlockGreedyInternal()
584 BROTLI_CONTEXT(prev_byte, prev_byte2, literal_context_lut); in BrotliBuildMetaBlockGreedyInternal()
589 prev_byte2 = prev_byte; in BrotliBuildMetaBlockGreedyInternal()
590 prev_byte = literal; in BrotliBuildMetaBlockGreedyInternal()
596 prev_byte = ringbuffer[(pos - 1) & mask]; in BrotliBuildMetaBlockGreedyInternal()
623 uint8_t prev_byte, in BrotliBuildMetaBlockGreedy()
632 BrotliBuildMetaBlockGreedyInternal(m, ringbuffer, pos, mask, prev_byte, in BrotliBuildMetaBlockGreedy()
635 BrotliBuildMetaBlockGreedyInternal(m, ringbuffer, pos, mask, prev_byte, in BrotliBuildMetaBlockGreedy()
126 BrotliBuildMetaBlock(MemoryManager* m, const uint8_t* ringbuffer, const size_t pos, const size_t mask, BrotliEncoderParams* params, uint8_t prev_byte, uint8_t prev_byte2, Command* cmds, size_t num_commands, ContextType literal_context_mode, MetaBlockSplit* mb) BrotliBuildMetaBlock() argument
538 BrotliBuildMetaBlockGreedyInternal( MemoryManager* m, const uint8_t* ringbuffer, size_t pos, size_t mask, uint8_t prev_byte, uint8_t prev_byte2, ContextLut literal_context_lut, const size_t num_contexts, const uint32_t* static_context_map, const Command* commands, size_t n_commands, MetaBlockSplit* mb) BrotliBuildMetaBlockGreedyInternal() argument
619 BrotliBuildMetaBlockGreedy(MemoryManager* m, const uint8_t* ringbuffer, size_t pos, size_t mask, uint8_t prev_byte, uint8_t prev_byte2, ContextLut literal_context_lut, size_t num_contexts, const uint32_t* static_context_map, const Command* commands, size_t n_commands, MetaBlockSplit* mb) BrotliBuildMetaBlockGreedy() argument
[all...]
H A Dmetablock.h79 uint8_t prev_byte,
91 uint8_t prev_byte, uint8_t prev_byte2, ContextLut literal_context_lut,
H A Dhistogram.h54 size_t mask, uint8_t prev_byte, uint8_t prev_byte2,
H A Dbrotli_bit_stream.h46 uint8_t prev_byte, uint8_t prev_byte2, BROTLI_BOOL is_last,
H A Dencode.c561 const uint8_t prev_byte, in WriteMetaBlockInternal()
622 prev_byte, prev_byte2, literal_context_lut, num_literal_contexts, in WriteMetaBlockInternal()
627 prev_byte, prev_byte2, in WriteMetaBlockInternal()
640 prev_byte, prev_byte2, in WriteMetaBlockInternal()
1230 uint8_t prev_byte = 0; in BrotliCompressBufferQuality10() local
1356 prev_byte, prev_byte2, in BrotliCompressBufferQuality10()
1372 mask, prev_byte, prev_byte2, in BrotliCompressBufferQuality10()
1396 prev_byte = input_buffer[metablock_start - 1]; in BrotliCompressBufferQuality10()
553 WriteMetaBlockInternal(MemoryManager* m, const uint8_t* data, const size_t mask, const uint64_t last_flush_pos, const size_t bytes, const BROTLI_BOOL is_last, ContextType literal_context_mode, const BrotliEncoderParams* params, const uint8_t prev_byte, const uint8_t prev_byte2, const size_t num_literals, const size_t num_commands, Command* commands, const int* saved_dist_cache, int* dist_cache, size_t* storage_ix, uint8_t* storage) WriteMetaBlockInternal() argument
H A Dbrotli_bit_stream.c937 uint8_t prev_byte, uint8_t prev_byte2, BROTLI_BOOL is_last, in BrotliStoreMetaBlock()
1031 BROTLI_CONTEXT(prev_byte, prev_byte2, literal_context_lut); in BrotliStoreMetaBlock()
1036 prev_byte2 = prev_byte; in BrotliStoreMetaBlock()
1037 prev_byte = literal; in BrotliStoreMetaBlock()
1044 prev_byte = input[(pos - 1) & mask]; in BrotliStoreMetaBlock()
935 BrotliStoreMetaBlock(MemoryManager* m, const uint8_t* input, size_t start_pos, size_t length, size_t mask, uint8_t prev_byte, uint8_t prev_byte2, BROTLI_BOOL is_last, const BrotliEncoderParams* params, ContextType literal_context_mode, const Command* commands, size_t n_commands, const MetaBlockSplit* mb, size_t* storage_ix, uint8_t* storage) BrotliStoreMetaBlock() argument
/third_party/toybox/toys/pending/
H A Dxzcat.c1716 uint32_t prev_byte = dict_get(&s->dict, 0); in lzma_literal_probs() local
1717 uint32_t low = prev_byte >> (8 - s->lzma.lc); in lzma_literal_probs()

Completed in 19 milliseconds