OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:splitpoints
(Results
1 - 3
of
3
) sorted by null
/external/zopfli/src/zopfli/
blocksplitter.h
38
The output
splitpoints
are indices in the LZ77 data.
48
size_t**
splitpoints
, size_t* npoints);
52
The output
splitpoints
are indices in the uncompressed bytes.
59
splitpoints
: dynamic array to put the resulting split point coordinates into.
61
npoints: pointer to amount of
splitpoints
, for the dynamic array. The amount of
66
size_t maxblocks, size_t**
splitpoints
, size_t* npoints);
75
size_t**
splitpoints
, size_t* npoints);
blocksplitter.c
154
size_t*
splitpoints
= 0;
local
164
ZOPFLI_APPEND_DATA(pos, &
splitpoints
, &npoints);
174
fprintf(stderr, "%d ", (int)
splitpoints
[i]);
178
fprintf(stderr, " %x", (int)
splitpoints
[i]);
182
free(
splitpoints
);
192
splitpoints
: the
splitpoints
found so far.
193
npoints: the amount of
splitpoints
found so far.
200
const size_t*
splitpoints
, size_t npoints,
206
size_t start = i == 0 ? 0 :
splitpoints
[i - 1]
[
all
...]
deflate.c
728
size_t*
splitpoints
= 0;
local
731
ZopfliBlockSplitSimple(in, instart, inend, 65535, &
splitpoints
, &npoints);
737
options->blocksplittingmax, &
splitpoints
, &npoints);
741
size_t start = i == 0 ? instart :
splitpoints
[i - 1];
742
size_t end = i == npoints ? inend :
splitpoints
[i];
747
free(
splitpoints
);
764
size_t*
splitpoints
= 0;
local
798
options->blocksplittingmax, &
splitpoints
, &npoints);
802
size_t start = i == 0 ? 0 :
splitpoints
[i - 1];
803
size_t end = i == npoints ? store.size :
splitpoints
[i]
[
all
...]
Completed in 47 milliseconds