OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HTreeGroup
(Results
1 - 4
of
4
) sorted by null
/external/webp/src/utils/
huffman_utils.h
56
typedef struct
HTreeGroup
HTreeGroup
;
57
struct
HTreeGroup
{
70
// Creates the instance of
HTreeGroup
with specified number of tree-groups.
71
HTreeGroup
* VP8LHtreeGroupsNew(int num_htree_groups);
73
// Releases the memory allocated for
HTreeGroup
.
74
void VP8LHtreeGroupsFree(
HTreeGroup
* const htree_groups);
huffman_utils.c
25
HTreeGroup
* VP8LHtreeGroupsNew(int num_htree_groups) {
26
HTreeGroup
* const htree_groups =
27
(
HTreeGroup
*)WebPSafeMalloc(num_htree_groups, sizeof(*htree_groups));
35
void VP8LHtreeGroupsFree(
HTreeGroup
* const htree_groups) {
/external/webp/src/dec/
vp8li_dec.h
53
HTreeGroup
*htree_groups_;
vp8l_dec.c
202
static WEBP_INLINE int ReadPackedSymbols(const
HTreeGroup
* group,
227
static void BuildPackedTable(
HTreeGroup
* const htree_group) {
364
HTreeGroup
* htree_groups = NULL;
367
HTreeGroup
htree_group_bogus;
461
HTreeGroup
* const htree_group =
747
static WEBP_INLINE
HTreeGroup
* GetHtreeGroupForPos(VP8LMetadata* const hdr,
[
all
...]
Completed in 65 milliseconds