Lines Matching defs:nodeElt
283 } nodeElt;
305 static U32 HUF_setMaxHeight(nodeElt* huffNode, U32 lastNonNull, U32 maxNbBits)
432 typedef nodeElt huffNodeTable[HUF_CTABLE_WORKSPACE_SIZE_U32];
464 static void HUF_swapNodes(nodeElt* a, nodeElt* b) {
465 nodeElt tmp = *a;
471 MEM_STATIC int HUF_isSorted(nodeElt huffNode[], U32 const maxSymbolValue1) {
482 HINT_INLINE void HUF_insertionSort(nodeElt huffNode[], int const low, int const high) {
487 nodeElt const key = huffNode[i];
498 static int HUF_quickSortPartition(nodeElt arr[], int const low, int const high) {
518 static void HUF_simpleQuickSort(nodeElt arr[], int low, int high) {
547 static void HUF_sort(nodeElt huffNode[], const unsigned count[], U32 const maxSymbolValue, rankPos rankPosition[]) {
607 static int HUF_buildTree(nodeElt* huffNode, U32 maxSymbolValue)
609 nodeElt* const huffNode0 = huffNode - 1;
653 static void HUF_buildCTableFromTree(HUF_CElt* CTable, nodeElt const* huffNode, int nonNullRank, U32 maxSymbolValue, U32 maxNbBits)
680 nodeElt* const huffNode0 = wksp_tables->huffNodeTbl;
681 nodeElt* const huffNode = huffNode0+1;