Lines Matching refs:srcSize

1479                         const void* src, size_t srcSize,  in ZSTD_compressBlock_lazy_generic()  argument
1486 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_lazy_generic()
1722 void const* src, size_t srcSize) in ZSTD_compressBlock_btlazy2() argument
1724 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_binaryTree, 2, ZSTD… in ZSTD_compressBlock_btlazy2()
1729 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy2() argument
1731 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 2, ZSTD_… in ZSTD_compressBlock_lazy2()
1736 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy() argument
1738 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 1, ZSTD_… in ZSTD_compressBlock_lazy()
1743 void const* src, size_t srcSize) in ZSTD_compressBlock_greedy() argument
1745 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 0, ZSTD_… in ZSTD_compressBlock_greedy()
1750 void const* src, size_t srcSize) in ZSTD_compressBlock_btlazy2_dictMatchState() argument
1752 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_binaryTree, 2, ZSTD… in ZSTD_compressBlock_btlazy2_dictMatchState()
1757 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy2_dictMatchState() argument
1759 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 2, ZSTD_… in ZSTD_compressBlock_lazy2_dictMatchState()
1764 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy_dictMatchState() argument
1766 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 1, ZSTD_… in ZSTD_compressBlock_lazy_dictMatchState()
1771 void const* src, size_t srcSize) in ZSTD_compressBlock_greedy_dictMatchState() argument
1773 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 0, ZSTD_… in ZSTD_compressBlock_greedy_dictMatchState()
1779 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy2_dedicatedDictSearch() argument
1781 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 2, ZSTD_… in ZSTD_compressBlock_lazy2_dedicatedDictSearch()
1786 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy_dedicatedDictSearch() argument
1788 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 1, ZSTD_… in ZSTD_compressBlock_lazy_dedicatedDictSearch()
1793 void const* src, size_t srcSize) in ZSTD_compressBlock_greedy_dedicatedDictSearch() argument
1795 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 0, ZSTD_… in ZSTD_compressBlock_greedy_dedicatedDictSearch()
1801 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy2_row() argument
1803 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 2, ZSTD_no… in ZSTD_compressBlock_lazy2_row()
1808 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy_row() argument
1810 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 1, ZSTD_no… in ZSTD_compressBlock_lazy_row()
1815 void const* src, size_t srcSize) in ZSTD_compressBlock_greedy_row() argument
1817 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 0, ZSTD_no… in ZSTD_compressBlock_greedy_row()
1822 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy2_dictMatchState_row() argument
1824 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 2, ZSTD_di… in ZSTD_compressBlock_lazy2_dictMatchState_row()
1829 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy_dictMatchState_row() argument
1831 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 1, ZSTD_di… in ZSTD_compressBlock_lazy_dictMatchState_row()
1836 void const* src, size_t srcSize) in ZSTD_compressBlock_greedy_dictMatchState_row() argument
1838 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 0, ZSTD_di… in ZSTD_compressBlock_greedy_dictMatchState_row()
1844 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy2_dedicatedDictSearch_row() argument
1846 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 2, ZSTD_de… in ZSTD_compressBlock_lazy2_dedicatedDictSearch_row()
1851 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy_dedicatedDictSearch_row() argument
1853 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 1, ZSTD_de… in ZSTD_compressBlock_lazy_dedicatedDictSearch_row()
1858 void const* src, size_t srcSize) in ZSTD_compressBlock_greedy_dedicatedDictSearch_row() argument
1860 …return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 0, ZSTD_de… in ZSTD_compressBlock_greedy_dedicatedDictSearch_row()
1867 const void* src, size_t srcSize, in ZSTD_compressBlock_lazy_extDict_generic() argument
1873 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_lazy_extDict_generic()
2052 void const* src, size_t srcSize) in ZSTD_compressBlock_greedy_extDict() argument
2054 …return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_hashChain, … in ZSTD_compressBlock_greedy_extDict()
2059 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy_extDict() argument
2062 …return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_hashChain, … in ZSTD_compressBlock_lazy_extDict()
2067 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy2_extDict() argument
2070 …return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_hashChain, … in ZSTD_compressBlock_lazy2_extDict()
2075 void const* src, size_t srcSize) in ZSTD_compressBlock_btlazy2_extDict() argument
2078 …return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_binaryTree,… in ZSTD_compressBlock_btlazy2_extDict()
2083 void const* src, size_t srcSize) in ZSTD_compressBlock_greedy_extDict_row() argument
2085 …return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 0); in ZSTD_compressBlock_greedy_extDict_row()
2090 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy_extDict_row() argument
2093 …return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 1); in ZSTD_compressBlock_lazy_extDict_row()
2098 void const* src, size_t srcSize) in ZSTD_compressBlock_lazy2_extDict_row() argument
2101 …return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_rowHash, 2); in ZSTD_compressBlock_lazy2_extDict_row()