OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ZopfliLongestMatchCache
(Results
1 - 4
of
4
) sorted by null
/external/zopfli/src/zopfli/
cache.h
39
typedef struct
ZopfliLongestMatchCache
{
43
}
ZopfliLongestMatchCache
;
45
/* Initializes the
ZopfliLongestMatchCache
. */
46
void ZopfliInitCache(size_t blocksize,
ZopfliLongestMatchCache
* lmc);
48
/* Frees up the memory of the
ZopfliLongestMatchCache
. */
49
void ZopfliCleanCache(
ZopfliLongestMatchCache
* lmc);
54
ZopfliLongestMatchCache
* lmc);
57
void ZopfliCacheToSublen(const
ZopfliLongestMatchCache
* lmc,
61
unsigned ZopfliMaxCachedSublen(const
ZopfliLongestMatchCache
* lmc,
cache.c
28
void ZopfliInitCache(size_t blocksize,
ZopfliLongestMatchCache
* lmc) {
42
void ZopfliCleanCache(
ZopfliLongestMatchCache
* lmc) {
50
ZopfliLongestMatchCache
* lmc) {
81
void ZopfliCacheToSublen(const
ZopfliLongestMatchCache
* lmc,
107
unsigned ZopfliMaxCachedSublen(const
ZopfliLongestMatchCache
* lmc,
lz77.h
67
ZopfliLongestMatchCache
* lmc;
deflate.c
602
s.lmc = (
ZopfliLongestMatchCache
*)malloc(sizeof(
ZopfliLongestMatchCache
));
654
s.lmc = (
ZopfliLongestMatchCache
*)malloc(sizeof(
ZopfliLongestMatchCache
));
782
s.lmc = (
ZopfliLongestMatchCache
*)malloc(sizeof(
ZopfliLongestMatchCache
));
Completed in 1129 milliseconds