Home | History | Annotate | Download | only in compress

Lines Matching refs:nodeElt

52 } nodeElt;
84 static size_t showHNodeSymbols(const nodeElt* hnode, size_t size)
94 static size_t showHNodeBits(const nodeElt* hnode, size_t size)
376 static U32 HUF_setMaxHeight(nodeElt* huffNode, U32 lastNonNull, U32 targetNbBits)
505 typedef nodeElt huffNodeTable[2 * (HUF_SYMBOLVALUE_MAX + 1)];
537 static void HUF_swapNodes(nodeElt* a, nodeElt* b) {
538 nodeElt tmp = *a;
544 MEM_STATIC int HUF_isSorted(nodeElt huffNode[], U32 const maxSymbolValue1) {
555 HINT_INLINE void HUF_insertionSort(nodeElt huffNode[], int const low, int const high) {
560 nodeElt const key = huffNode[i];
571 static int HUF_quickSortPartition(nodeElt arr[], int const low, int const high) {
591 static void HUF_simpleQuickSort(nodeElt arr[], int low, int high) {
620 static void HUF_sort(nodeElt huffNode[], const unsigned count[], U32 const maxSymbolValue, rankPos rankPosition[]) {
681 static int HUF_buildTree(nodeElt* huffNode, U32 maxSymbolValue)
683 nodeElt* const huffNode0 = huffNode - 1;
730 static void HUF_buildCTableFromTree(HUF_CElt* CTable, nodeElt const* huffNode, int nonNullRank, U32 maxSymbolValue, U32 maxNbBits)
761 nodeElt* const huffNode0 = wksp_tables->huffNodeTbl;
762 nodeElt* const huffNode = huffNode0+1;