| 502 | } |
| 503 | |
| 504 | void ZSTD_updateTree(ZSTD_matchState_t* ms, const BYTE* ip, const BYTE* iend) { |
| 505 | ZSTD_updateTree_internal(ms, ip, iend, ms->cParams.minMatch, ZSTD_noDict); |
| 506 | } |
| 507 | |
| 508 | FORCE_INLINE_TEMPLATE |
| 509 | U32 ZSTD_insertBtAndGetAllMatches ( |
no test coverage detected