Home
last modified time | relevance | path

Searched refs:HuffmanNode (Results 1 – 4 of 4) sorted by relevance

/third_party/mindspore/mindspore/lite/src/
Dhuffman_decode.h32 struct HuffmanNode { struct
36 HuffmanNode *left = nullptr; argument
37 HuffmanNode *right = nullptr; argument
38 HuffmanNode *parent = nullptr; argument
41 using HuffmanNodePtr = HuffmanNode *;
Dhuffman_decode.cc36 auto root = new (std::nothrow) HuffmanNode(); in DoHuffmanDecode()
92 new_node = new (std::nothrow) HuffmanNode(); in RebuildHuffmanTree()
/third_party/mindspore/mindspore/lite/tools/converter/quantizer/
Dhuffman_encode.h40 struct HuffmanNode { struct
44 HuffmanNode *left, *right, *parent; argument
46 using HuffmanNodePtr = HuffmanNode *;
Dhuffman_encode.cc80 auto node = new (std::nothrow) HuffmanNode(); in GetHuffmanPriorityQueue()
96 auto node = new (std::nothrow) HuffmanNode(); in GetHuffmanPriorityQueue()
145 auto new_node = new (std::nothrow) HuffmanNode(); in BuildHuffmanTree()