Home
last modified time | relevance | path

Searched refs:tmp_ctx (Results 1 – 10 of 10) sorted by relevance

/third_party/openssl/crypto/evp/
Dm_sigver.c132 EVP_MD_CTX *tmp_ctx = EVP_MD_CTX_new(); in EVP_DigestSignFinal() local
133 if (tmp_ctx == NULL) in EVP_DigestSignFinal()
135 if (!EVP_MD_CTX_copy_ex(tmp_ctx, ctx)) { in EVP_DigestSignFinal()
136 EVP_MD_CTX_free(tmp_ctx); in EVP_DigestSignFinal()
140 r = tmp_ctx->pctx->pmeth->signctx(tmp_ctx->pctx, in EVP_DigestSignFinal()
141 sigret, siglen, tmp_ctx); in EVP_DigestSignFinal()
143 r = EVP_DigestFinal_ex(tmp_ctx, md, &mdlen); in EVP_DigestSignFinal()
144 EVP_MD_CTX_free(tmp_ctx); in EVP_DigestSignFinal()
191 EVP_MD_CTX *tmp_ctx = EVP_MD_CTX_new(); in EVP_DigestVerifyFinal() local
192 if (tmp_ctx == NULL) in EVP_DigestVerifyFinal()
[all …]
Dp_verify.c30 EVP_MD_CTX *tmp_ctx = EVP_MD_CTX_new(); in EVP_VerifyFinal() local
31 if (tmp_ctx == NULL) { in EVP_VerifyFinal()
35 rv = EVP_MD_CTX_copy_ex(tmp_ctx, ctx); in EVP_VerifyFinal()
37 rv = EVP_DigestFinal_ex(tmp_ctx, m, &m_len); in EVP_VerifyFinal()
38 EVP_MD_CTX_free(tmp_ctx); in EVP_VerifyFinal()
Dp_sign.c32 EVP_MD_CTX *tmp_ctx = EVP_MD_CTX_new(); in EVP_SignFinal() local
33 if (tmp_ctx == NULL) { in EVP_SignFinal()
37 rv = EVP_MD_CTX_copy_ex(tmp_ctx, ctx); in EVP_SignFinal()
39 rv = EVP_DigestFinal_ex(tmp_ctx, m, &m_len); in EVP_SignFinal()
40 EVP_MD_CTX_free(tmp_ctx); in EVP_SignFinal()
/third_party/protobuf/src/google/protobuf/
Dextension_set_inl.h238 ParseContext tmp_ctx(ctx->depth(), false, &p, payload); in ParseMessageSetItemTmpl()
239 tmp_ctx.data().pool = ctx->data().pool; in ParseMessageSetItemTmpl()
240 tmp_ctx.data().factory = ctx->data().factory; in ParseMessageSetItemTmpl()
241 GOOGLE_PROTOBUF_PARSER_ASSERT(value->_InternalParse(p, &tmp_ctx) && in ParseMessageSetItemTmpl()
242 tmp_ctx.EndedAtLimit()); in ParseMessageSetItemTmpl()
Dwire_format.cc695 ParseContext tmp_ctx(ctx->depth(), false, &p, payload); in _InternalParse() local
696 tmp_ctx.data().pool = ctx->data().pool; in _InternalParse()
697 tmp_ctx.data().factory = ctx->data().factory; in _InternalParse()
698 GOOGLE_PROTOBUF_PARSER_ASSERT(value->_InternalParse(p, &tmp_ctx) && in _InternalParse()
699 tmp_ctx.EndedAtLimit()); in _InternalParse()
/third_party/ffmpeg/libavutil/
Dhwcontext.c652 AVHWDeviceContext *dst_ctx, *tmp_ctx; in av_hwdevice_ctx_create_derived_opts() local
657 tmp_ctx = (AVHWDeviceContext*)tmp_ref->data; in av_hwdevice_ctx_create_derived_opts()
658 if (tmp_ctx->type == type) { in av_hwdevice_ctx_create_derived_opts()
666 tmp_ref = tmp_ctx->internal->source_device; in av_hwdevice_ctx_create_derived_opts()
678 tmp_ctx = (AVHWDeviceContext*)tmp_ref->data; in av_hwdevice_ctx_create_derived_opts()
681 tmp_ctx, in av_hwdevice_ctx_create_derived_opts()
698 tmp_ref = tmp_ctx->internal->source_device; in av_hwdevice_ctx_create_derived_opts()
/third_party/mesa3d/src/egl/drivers/wgl/
Degl_wgl.c569 _EGLContext *tmp_ctx; in wgl_make_current() local
615 _eglBindContext(ctx, dsurf, rsurf, &tmp_ctx, &tmp_dsurf, &tmp_rsurf); in wgl_make_current()
616 assert(tmp_ctx == old_ctx && tmp_dsurf == old_dsurf && in wgl_make_current()
/third_party/mesa3d/src/intel/vulkan/
Danv_pipeline.c2983 void *tmp_ctx = ralloc_context(NULL); in anv_device_init_rt_shaders() local
2985 brw_nir_create_raygen_trampoline(device->physical->compiler, tmp_ctx); in anv_device_init_rt_shaders()
3005 brw_compile_cs(device->physical->compiler, tmp_ctx, &params); in anv_device_init_rt_shaders()
3017 ralloc_free(tmp_ctx); in anv_device_init_rt_shaders()
3034 void *tmp_ctx = ralloc_context(NULL); in anv_device_init_rt_shaders() local
3036 brw_nir_create_trivial_return_shader(device->physical->compiler, tmp_ctx); in anv_device_init_rt_shaders()
3046 brw_compile_bs(device->physical->compiler, device, tmp_ctx, in anv_device_init_rt_shaders()
3058 ralloc_free(tmp_ctx); in anv_device_init_rt_shaders()
/third_party/ffmpeg/libavcodec/
Dh264_slice.c2121 H264SliceContext tmp_ctx; in ff_h264_queue_decode_slice() local
2127 memcpy(&tmp_ctx, h->slice_ctx, sizeof(tmp_ctx)); in ff_h264_queue_decode_slice()
2128 memcpy(h->slice_ctx, sl, sizeof(tmp_ctx)); in ff_h264_queue_decode_slice()
2129 memcpy(sl, &tmp_ctx, sizeof(tmp_ctx)); in ff_h264_queue_decode_slice()
/third_party/mesa3d/src/egl/drivers/dri2/
Degl_dri2.c1816 _EGLContext *tmp_ctx; in dri2_make_current() local
1860 _eglBindContext(ctx, dsurf, rsurf, &tmp_ctx, &tmp_dsurf, &tmp_rsurf); in dri2_make_current()
1861 assert(tmp_ctx == old_ctx && tmp_dsurf == old_dsurf && in dri2_make_current()