| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_des.h | 24 } dstream; member in struct:prov_des_ctx_st
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_des.h | 24 } dstream; member in struct:prov_des_ctx_st
|
| /src/external/bsd/zstd/dist/tests/fuzz/ |
| stream_decompress.c | 25 static ZSTD_DStream *dstream = NULL; variable 83 if (!dstream) { 84 dstream = ZSTD_createDStream(); 85 FUZZ_ASSERT(dstream); 87 FUZZ_ZASSERT(ZSTD_DCtx_reset(dstream, ZSTD_reset_session_only)); 92 FUZZ_ZASSERT(ZSTD_DCtx_setParameter(dstream, ZSTD_d_stableOutBuffer, 1)); 103 size_t const rc = ZSTD_decompressStream(dstream, &out, &in); 114 ZSTD_freeDStream(dstream); dstream = NULL;
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_read_support_filter_zstd.c | 57 ZSTD_DStream *dstream; member in struct:private_data 216 ZSTD_DStream *dstream; local 223 dstream = ZSTD_createDStream(); 225 if (state == NULL || out_block == NULL || dstream == NULL) { 228 ZSTD_freeDStream(dstream); /* supports free on NULL */ 238 state->dstream = dstream; 264 ret = ZSTD_initDStream(state->dstream); 294 ret = ZSTD_decompressStream(state->dstream, &out, &in); 331 ZSTD_freeDStream(state->dstream); [all...] |
| /src/external/bsd/zstd/dist/contrib/seekable_format/ |
| zstdseek_decompress.c | 210 ZSTD_DStream* dstream; member in struct:ZSTD_seekable_s 235 zs->dstream = ZSTD_createDStream(); 236 if (zs->dstream == NULL) { 247 ZSTD_freeDStream(zs->dstream); 479 { const size_t dstreamInit = ZSTD_initDStream(zs->dstream); 506 ZSTD_DCtx_reset(zs->dstream, ZSTD_reset_session_only); 527 toRead = ZSTD_decompressStream(zs->dstream, &outTmp, &zs->in);
|
| /src/external/bsd/zstd/dist/tests/ |
| zstreamtest.c | 438 DISPLAYLEVEL(3, "test%3i : estimate DStream size : ", testNb++); 451 DISPLAYLEVEL(3, "test%3i : check actual DStream size : ", testNb++); 1531 { ZSTD_DStream* const dstream = ZSTD_createDCtx(); local 1540 CHECK_Z( ZSTD_initDStream_usingDict(dstream, dictionary.start, dictionary.filled) ); 1542 CHECK_Z( ZSTD_decompressStream(dstream, &outBuff, &inBuff) ); 1544 CHECK_Z( ZSTD_decompressStream(dstream, &outBuff, &inBuff) ); 1546 ZSTD_freeDStream(dstream);
|
| fuzzer.c | 1508 { ZSTD_DCtx* const dstream = ZSTD_createDStream(); local 1512 if (dstream==NULL) goto _output_error; 1519 CHECK_Z ( ZSTD_initDStream(dstream) ); 1522 CHECK_Z ( ZSTD_decompressStream(dstream, &doutput, &dinput) ); 1525 ZSTD_freeDStream(dstream); 2001 DISPLAYLEVEL(3, "test%3i : use DStream on DCtx-sized static context (should fail) : ", testNb++);
|