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

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c 2165 size_t const remainingInput = (size_t)(iend-ip);
2167 if (toLoad > remainingInput) { /* not enough input to load full header */
2168 if (remainingInput > 0) {
2169 ZSTD_memcpy(zds->headerBuffer + zds->lhSize, ip, remainingInput);
2170 zds->lhSize += remainingInput;
zstd_decompress.c 2165 size_t const remainingInput = (size_t)(iend-ip);
2167 if (toLoad > remainingInput) { /* not enough input to load full header */
2168 if (remainingInput > 0) {
2169 ZSTD_memcpy(zds->headerBuffer + zds->lhSize, ip, remainingInput);
2170 zds->lhSize += remainingInput;
zstd_decompress.c 2165 size_t const remainingInput = (size_t)(iend-ip);
2167 if (toLoad > remainingInput) { /* not enough input to load full header */
2168 if (remainingInput > 0) {
2169 ZSTD_memcpy(zds->headerBuffer + zds->lhSize, ip, remainingInput);
2170 zds->lhSize += remainingInput;
  /src/external/bsd/zstd/dist/tests/
zstreamtest.c 1891 int remainingInput = 256 * 1024;
1898 while (remainingInput > 0) {
1905 remainingInput -= (int)kSmallBlockSize;
zstreamtest.c 1891 int remainingInput = 256 * 1024;
1898 while (remainingInput > 0) {
1905 remainingInput -= (int)kSmallBlockSize;
zstreamtest.c 1891 int remainingInput = 256 * 1024;
1898 while (remainingInput > 0) {
1905 remainingInput -= (int)kSmallBlockSize;

Completed in 155 milliseconds