OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BROTLI_INTERNAL
(Results
1 - 23
of
23
) sorted by relevancy
/xsrc/external/mit/brotli/dist/c/enc/
dictionary_hash.c
16
BROTLI_INTERNAL
const uint16_t kStaticDictionaryHashWords[32768] = {
1000
BROTLI_INTERNAL
const uint8_t kStaticDictionaryHashLengths[32768] = {
block_splitter.h
32
BROTLI_INTERNAL
void BrotliInitBlockSplit(BlockSplit* self);
33
BROTLI_INTERNAL
void BrotliDestroyBlockSplit(MemoryManager* m,
36
BROTLI_INTERNAL
void BrotliSplitBlock(MemoryManager* m,
literal_cost.h
23
BROTLI_INTERNAL
void BrotliEstimateBitCostsForLiterals(
backward_references_hq.h
26
BROTLI_INTERNAL
void BrotliCreateZopfliBackwardReferences(MemoryManager* m,
33
BROTLI_INTERNAL
void BrotliCreateHqZopfliBackwardReferences(MemoryManager* m,
65
BROTLI_INTERNAL
void BrotliInitZopfliNodes(ZopfliNode* array, size_t length);
80
BROTLI_INTERNAL
size_t BrotliZopfliComputeShortestPath(
86
BROTLI_INTERNAL
void BrotliZopfliCreateCommands(
brotli_bit_stream.h
34
BROTLI_INTERNAL
void BrotliStoreHuffmanTree(const uint8_t* depths, size_t num,
37
BROTLI_INTERNAL
void BrotliBuildAndStoreHuffmanTreeFast(
44
BROTLI_INTERNAL
void BrotliStoreMetaBlock(MemoryManager* m,
55
BROTLI_INTERNAL
void BrotliStoreMetaBlockTrivial(MemoryManager* m,
65
BROTLI_INTERNAL
void BrotliStoreMetaBlockFast(MemoryManager* m,
75
BROTLI_INTERNAL
void BrotliStoreUncompressedMetaBlock(
compress_fragment_two_pass.h
39
BROTLI_INTERNAL
void BrotliCompressFragmentTwoPass(MemoryManager* m,
encoder_dict.h
37
BROTLI_INTERNAL
void BrotliInitEncoderDictionary(BrotliEncoderDictionary* dict);
static_dict.h
31
BROTLI_INTERNAL
BROTLI_BOOL BrotliFindAllStaticDictionaryMatches(
utf8_util.h
24
BROTLI_INTERNAL
BROTLI_BOOL BrotliIsMostlyUTF8(
entropy_encode.h
34
BROTLI_INTERNAL
BROTLI_BOOL BrotliSetDepth(
49
BROTLI_INTERNAL
void BrotliCreateHuffmanTree(const uint32_t* data,
62
BROTLI_INTERNAL
void BrotliOptimizeHuffmanCountsForRle(
68
BROTLI_INTERNAL
void BrotliWriteHuffmanTree(const uint8_t* depth,
75
BROTLI_INTERNAL
void BrotliConvertBitDepthsToSymbols(const uint8_t* depth,
79
BROTLI_INTERNAL
extern const size_t kBrotliShellGaps[6];
backward_references.h
29
BROTLI_INTERNAL
void BrotliCreateBackwardReferences(size_t num_bytes,
compress_fragment.h
45
BROTLI_INTERNAL
void BrotliCompressFragmentFast(MemoryManager* m,
memory.h
39
BROTLI_INTERNAL
void BrotliInitMemoryManager(
43
BROTLI_INTERNAL
void* BrotliAllocate(MemoryManager* m, size_t n);
47
BROTLI_INTERNAL
void BrotliFree(MemoryManager* m, void* p);
71
BROTLI_INTERNAL
void BrotliWipeOutMemoryManager(MemoryManager* m);
bit_cost.h
55
BROTLI_INTERNAL
double BrotliPopulationCostLiteral(const HistogramLiteral*);
56
BROTLI_INTERNAL
double BrotliPopulationCostCommand(const HistogramCommand*);
57
BROTLI_INTERNAL
double BrotliPopulationCostDistance(const HistogramDistance*);
fast_log.h
35
BROTLI_INTERNAL
extern const double kBrotliLog2Table[BROTLI_LOG2_TABLE_SIZE];
metablock.h
74
BROTLI_INTERNAL
void BrotliBuildMetaBlock(MemoryManager* m,
89
BROTLI_INTERNAL
void BrotliBuildMetaBlockGreedy(
95
BROTLI_INTERNAL
void BrotliOptimizeHistograms(uint32_t num_distance_codes,
98
BROTLI_INTERNAL
void BrotliInitDistanceParams(BrotliEncoderParams* params,
histogram.h
50
BROTLI_INTERNAL
void BrotliBuildHistogramsWithContext(
command.h
23
BROTLI_INTERNAL
extern const uint32_t
25
BROTLI_INTERNAL
extern const uint32_t
27
BROTLI_INTERNAL
extern const uint32_t
29
BROTLI_INTERNAL
extern const uint32_t
cluster_inc.h
14
BROTLI_INTERNAL
void FN(BrotliCompareAndPushToQueue)(
70
BROTLI_INTERNAL
size_t FN(BrotliHistogramCombine)(HistogramType* out,
157
BROTLI_INTERNAL
double FN(BrotliHistogramBitCostDistance)(
172
BROTLI_INTERNAL
void FN(BrotliHistogramRemap)(const HistogramType* in,
211
BROTLI_INTERNAL
size_t FN(BrotliHistogramReindex)(MemoryManager* m,
249
BROTLI_INTERNAL
void FN(BrotliClusterHistograms)(
/xsrc/external/mit/brotli/dist/c/dec/
huffman.h
91
BROTLI_INTERNAL
void BrotliBuildCodeLengthsHuffmanTable(HuffmanCode* root_table,
96
BROTLI_INTERNAL
uint32_t BrotliBuildHuffmanTable(HuffmanCode* root_table,
103
BROTLI_INTERNAL
uint32_t BrotliBuildSimpleHuffmanTable(HuffmanCode* table,
state.h
344
BROTLI_INTERNAL
BROTLI_BOOL BrotliDecoderStateInit(BrotliDecoderState* s,
346
BROTLI_INTERNAL
void BrotliDecoderStateCleanup(BrotliDecoderState* s);
347
BROTLI_INTERNAL
void BrotliDecoderStateMetablockBegin(BrotliDecoderState* s);
348
BROTLI_INTERNAL
void BrotliDecoderStateCleanupAfterMetablock(
350
BROTLI_INTERNAL
BROTLI_BOOL BrotliDecoderHuffmanTreeGroupInit(
bit_reader.h
24
BROTLI_INTERNAL
extern const uint32_t kBrotliBitMask[33];
51
BROTLI_INTERNAL
void BrotliInitBitReader(BrotliBitReader* const br);
58
BROTLI_INTERNAL
BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br);
63
BROTLI_INTERNAL
BROTLI_NOINLINE BROTLI_BOOL BrotliSafeReadBits32Slow(
/xsrc/external/mit/brotli/dist/c/common/
platform.h
159
/*
BROTLI_INTERNAL
could be defined to override visibility, e.g. for tests. */
160
#if !defined(
BROTLI_INTERNAL
)
162
#define
BROTLI_INTERNAL
171
#define
BROTLI_INTERNAL
__attribute__ ((visibility ("hidden")))
173
#define
BROTLI_INTERNAL
Completed in 18 milliseconds
Indexes created Sat Jul 04 00:25:45 UTC 2026