HomeSort by: relevance | last modified time | path
    Searched defs:rankStart (Results 1 - 7 of 7) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/decompress/
huf_decompress.c 379 U32 rankStart[HUF_TABLELOG_ABSOLUTEMAX + 1];
415 /* Compute symbols and rankStart given rankVal:
423 * rankStart contains the offset where each rank belongs in the DTable.
424 * rankStart[0] is not filled because there are no entries in the table for
434 wksp->rankStart[n] = curr;
440 wksp->symbols[wksp->rankStart[w]++] = (BYTE)(n+u);
445 wksp->symbols[wksp->rankStart[w]++] = (BYTE)n;
457 int rankStart = 0;
461 int uStart = rankStart;
515 rankStart += symbolCount * length
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v03.c 1816 const U32* rankStart, rankVal_t rankValOrigin, const U32 maxWeight,
1840 sortedRank = rankStart[minWeight];
1868 U32* const rankStart = rankStart0+1;
1898 rankStart[w] = current;
1900 rankStart[0] = nextRankStart; /* put all 0w symbols at the end of sorted list*/
1910 U32 r = rankStart[w]++;
1914 rankStart[0] = 0; /* forget 0w symbols; this is beginning of weight(1) */
zstd_v04.c 1973 const U32* rankStart, rankVal_t rankValOrigin, const U32 maxWeight,
1997 sortedRank = rankStart[minWeight];
2025 U32* const rankStart = rankStart0+1;
2054 rankStart[w] = current;
2056 rankStart[0] = nextRankStart; /* put all 0w symbols at the end of sorted list*/
2066 U32 r = rankStart[w]++;
2070 rankStart[0] = 0; /* forget 0w symbols; this is beginning of weight(1) */
zstd_v02.c 1820 const U32* rankStart, rankVal_t rankValOrigin, const U32 maxWeight,
1844 sortedRank = rankStart[minWeight];
1872 U32* const rankStart = rankStart0+1;
1902 rankStart[w] = current;
1904 rankStart[0] = nextRankStart; /* put all 0w symbols at the end of sorted list*/
1914 U32 r = rankStart[w]++;
1918 rankStart[0] = 0; /* forget 0w symbols; this is beginning of weight(1) */
2139 const sortedSymbol_t* sortedSymbols, const U32 sortedListSize, const U32* rankStart,
2165 symbolStartPos = rankStart[minWeight];
2183 sortedSymbols, sortedListSize, rankStart,
    [all...]
zstd_v05.c 2103 const U32* rankStart, rankVal_t rankValOrigin, const U32 maxWeight,
2125 sortedRank = rankStart[minWeight];
2151 U32* const rankStart = rankStart0+1;
2178 rankStart[w] = current;
2180 rankStart[0] = nextRankStart; /* put all 0w symbols at the end of sorted list*/
2189 U32 r = rankStart[w]++;
2193 rankStart[0] = 0; /* forget 0w symbols; this is beginning of weight(1) */
zstd_v06.c 2231 const U32* rankStart, rankVal_t rankValOrigin, const U32 maxWeight,
2253 sortedRank = rankStart[minWeight];
2277 U32* const rankStart = rankStart0+1;
2303 rankStart[w] = current;
2305 rankStart[0] = nextRankStart; /* put all 0w symbols at the end of sorted list*/
2313 U32 const r = rankStart[w]++;
2317 rankStart[0] = 0; /* forget 0w symbols; this is beginning of weight(1) */
zstd_v07.c 2039 const U32* rankStart, rankVal_t rankValOrigin, const U32 maxWeight,
2061 sortedRank = rankStart[minWeight];
2085 U32* const rankStart = rankStart0+1;
2112 rankStart[w] = current;
2114 rankStart[0] = nextRankStart; /* put all 0w symbols at the end of sorted list*/
2122 U32 const r = rankStart[w]++;
2126 rankStart[0] = 0; /* forget 0w symbols; this is beginning of weight(1) */

Completed in 49 milliseconds