HomeSort by relevance Sort by last modified time
    Searched refs:BROTLI_ALLOC (Results 1 - 16 of 16) sorted by null

  /external/brotli/c/enc/
block_encoder_inc.h 19 self->depths_ = BROTLI_ALLOC(m, uint8_t, table_size);
20 self->bits_ = BROTLI_ALLOC(m, uint16_t, table_size);
memory.h 42 #define BROTLI_ALLOC(M, T, N) \
block_splitter_inc.h 193 uint32_t* histogram_symbols = BROTLI_ALLOC(m, uint32_t, num_blocks);
194 uint32_t* block_lengths = BROTLI_ALLOC(m, uint32_t, num_blocks);
200 BROTLI_ALLOC(m, HistogramType, all_histograms_capacity);
203 uint32_t* cluster_size = BROTLI_ALLOC(m, uint32_t, cluster_size_capacity);
205 HistogramType* histograms = BROTLI_ALLOC(m, HistogramType,
210 HistogramPair* pairs = BROTLI_ALLOC(m, HistogramPair, pairs_capacity);
280 pairs = BROTLI_ALLOC(m, HistogramPair, max_num_pairs + 1);
284 clusters = BROTLI_ALLOC(m, uint32_t, num_clusters);
296 new_index = BROTLI_ALLOC(m, uint32_t, num_clusters);
388 histograms = BROTLI_ALLOC(m, HistogramType, num_histograms)
    [all...]
block_splitter.c 135 uint8_t* literals = BROTLI_ALLOC(m, uint8_t, literals_count);
152 uint16_t* insert_and_copy_codes = BROTLI_ALLOC(m, uint16_t, num_commands);
171 uint16_t* distance_prefixes = BROTLI_ALLOC(m, uint16_t, num_commands);
metablock.c 59 BROTLI_ALLOC(m, ContextType, mb->literal_split.num_types);
69 BROTLI_ALLOC(m, HistogramLiteral, literal_histograms_size);
76 BROTLI_ALLOC(m, HistogramDistance, distance_histograms_size);
83 BROTLI_ALLOC(m, HistogramCommand, mb->command_histograms_size);
97 BROTLI_ALLOC(m, uint32_t, mb->literal_context_map_size);
103 BROTLI_ALLOC(m, HistogramLiteral, mb->literal_histograms_size);
128 BROTLI_ALLOC(m, uint32_t, mb->distance_context_map_size);
134 BROTLI_ALLOC(m, HistogramDistance, mb->distance_histograms_size);
231 *histograms = BROTLI_ALLOC(m, HistogramLiteral, *histograms_size);
279 BROTLI_ALLOC(m, HistogramLiteral, 2 * num_contexts)
    [all...]
cluster_inc.h 214 uint32_t* new_index = BROTLI_ALLOC(m, uint32_t, length);
231 tmp = BROTLI_ALLOC(m, HistogramType, next_index);
253 uint32_t* cluster_size = BROTLI_ALLOC(m, uint32_t, in_size);
254 uint32_t* clusters = BROTLI_ALLOC(m, uint32_t, in_size);
259 HistogramPair* pairs = BROTLI_ALLOC(m, HistogramPair, pairs_capacity + 1);
encode.c 204 s->storage_ = BROTLI_ALLOC(m, uint8_t, size);
243 s->large_table_ = BROTLI_ALLOC(m, int, htsize);
    [all...]
port.h 175 new_array = BROTLI_ALLOC((M), T, _new_size); \
ringbuffer.h 75 uint8_t* new_data = BROTLI_ALLOC(
backward_references_hq.c 85 self->literal_costs_ = BROTLI_ALLOC(m, float, num_bytes + 2);
698 nodes = BROTLI_ALLOC(m, ZopfliNode, num_bytes + 1);
717 uint32_t* num_matches = BROTLI_ALLOC(m, uint32_t, num_bytes);
729 BackwardMatch* matches = BROTLI_ALLOC(m, BackwardMatch, matches_size);
772 nodes = BROTLI_ALLOC(m, ZopfliNode, num_bytes + 1);
metablock_inc.h 72 *histograms = BROTLI_ALLOC(m, HistogramType, *histograms_size);
brotli_bit_stream.c 450 HuffmanTree* tree = BROTLI_ALLOC(m, HuffmanTree, max_tree_size);
715 rle_symbols = BROTLI_ALLOC(m, uint32_t, context_map_size);
    [all...]
hash.h 385 self = BROTLI_ALLOC(m, uint8_t, alloc_size);
  /external/brotli/c/dec/
port.h 161 #define BROTLI_ALLOC(S, L) S->alloc_func(S->memory_manager_opaque, L)
state.c 162 HuffmanCode** p = (HuffmanCode**)BROTLI_ALLOC(s, code_size + htree_size);
decode.c     [all...]

Completed in 243 milliseconds