Home
last modified time | relevance | path

Searched refs:alpha_context (Results 1 – 4 of 4) sorted by relevance

/third_party/mindspore/tests/ut/cpp/pipeline/static_analysis/
Dstatic_analysis_test.cc306 AnalysisContextPtr alpha_context = dummy_context->NewContext(graph_alpha_, AbstractBasePtrList()); in TEST_F() local
307 ASSERT_TRUE(alpha_context->FindOwnOrParentContext(graph_alpha_) = alpha_context); in TEST_F()
308 ASSERT_TRUE(alpha_context->FindOwnOrParentContext(nullptr) = dummy_context); in TEST_F()
310 AnalysisContextPtr beta_context = alpha_context->NewContext(graph_beta_, AbstractBasePtrList()); in TEST_F()
312 ASSERT_TRUE(beta_context->FindOwnOrParentContext(graph_alpha_) = alpha_context); in TEST_F()
/third_party/ffmpeg/libavcodec/
Dvp6.c653 s->alpha_context = av_mallocz(sizeof(VP56Context)); in vp6_decode_init()
654 ff_vp56_init_context(avctx, s->alpha_context, in vp6_decode_init()
656 ff_vp6dsp_init(&s->alpha_context->vp56dsp); in vp6_decode_init()
657 vp6_decode_init_context(s->alpha_context); in vp6_decode_init()
684 if (s->alpha_context) { in vp6_decode_free()
685 ff_vp56_free_context(s->alpha_context); in vp6_decode_free()
686 vp6_decode_free_context(s->alpha_context); in vp6_decode_free()
687 av_freep(&s->alpha_context); in vp6_decode_free()
Dvp56.c560 if (s->alpha_context) in vp56_size_changed()
561 return vp56_size_changed(s->alpha_context); in vp56_size_changed()
595 if (s->alpha_context) in ff_vp56_decode_frame()
596 av_frame_unref(s->alpha_context->frames[i]); in ff_vp56_decode_frame()
608 av_frame_unref(s->alpha_context->frames[VP56_FRAME_CURRENT]); in ff_vp56_decode_frame()
609 if ((ret = av_frame_ref(s->alpha_context->frames[VP56_FRAME_CURRENT], p)) < 0) { in ff_vp56_decode_frame()
632 res = s->alpha_context->parse_header(s->alpha_context, buf, remaining_buf_size); in ff_vp56_decode_frame()
664 VP56Context *s = is_alpha ? s0->alpha_context : s0; in ff_vp56_decode_mbs()
Dvp56.h201 VP56Context *alpha_context; member