Home
last modified time | relevance | path

Searched refs:dctx (Results 1 – 7 of 7) sorted by relevance

/openbmc/openbmc/meta-security/meta-tpm/recipes-tpm1/openssl-tpm-engine/files/
H A Dopenssl11_build_fix.patch14 - EVP_ENCODE_CTX dctx;
15 + EVP_ENCODE_CTX *dctx;
17 - EVP_DecodeInit(&dctx);
18 + dctx = EVP_ENCODE_CTX_new();
19 + EVP_DecodeInit(dctx);
22 - ret = EVP_DecodeUpdate(&dctx, outdata, &len, indata, in_len);
23 + ret = EVP_DecodeUpdate(dctx, outdata, &len, indata, in_len);
30 - ret = EVP_DecodeFinal(&dctx, outdata, &len);
31 + ret = EVP_DecodeFinal(dctx, outdata, &len);
H A D0003-tpm-openssl-tpm-engine-parse-an-encrypted-tpm-SRK-pa.patch41 + EVP_ENCODE_CTX dctx;
43 + EVP_DecodeInit(&dctx);
46 + ret = EVP_DecodeUpdate(&dctx, outdata, &len, indata, in_len);
53 + ret = EVP_DecodeFinal(&dctx, outdata, &len);
/openbmc/bmcweb/http/
H A Dzstd_decompressor.cpp17 ZstdDecompressor::ZstdDecompressor() : dctx(ZSTD_createDStream()) in ZstdDecompressor()
19 ZSTD_initDStream(dctx); in ZstdDecompressor()
41 const size_t ret = ZSTD_decompressStream(dctx, &output, &input); in decompress()
61 ZSTD_freeDStream(dctx); in ~ZstdDecompressor()
H A Dzstd_decompressor.hpp20 ZSTD_DCtx* dctx; member in ZstdDecompressor
/openbmc/u-boot/tools/
H A Dmxsimage.c538 static int sb_grow_dcd(struct sb_dcd_ctx *dctx, unsigned int inc_size) in sb_grow_dcd() argument
545 dctx->size += inc_size; in sb_grow_dcd()
546 tmp = realloc(dctx->payload, dctx->size); in sb_grow_dcd()
550 dctx->payload = tmp; in sb_grow_dcd()
553 dctx->payload[0] = htonl((SB_HAB_DCD_TAG << 24) | in sb_grow_dcd()
554 (dctx->size << 8) | in sb_grow_dcd()
562 struct sb_dcd_ctx *dctx; in sb_build_dcd() local
568 dctx = calloc(1, sizeof(*dctx)); in sb_build_dcd()
569 if (!dctx) in sb_build_dcd()
572 ret = sb_grow_dcd(dctx, 4); in sb_build_dcd()
[all …]
/openbmc/qemu/block/
H A Dqcow2-threads.c271 ZSTD_DCtx *dctx = ZSTD_createDCtx(); in qcow2_zstd_decompress() local
273 if (!dctx) { in qcow2_zstd_decompress()
291 zstd_ret = ZSTD_decompressStream(dctx, &output, &input); in qcow2_zstd_decompress()
322 ZSTD_freeDCtx(dctx); in qcow2_zstd_decompress()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/krb5/krb5/
H A D0001-Eliminate-old-style-function-declarations.patch2312 aes_decrypt_ctx dctx;
2376 camellia_ctx ctx, dctx;