Searched refs:all_frames (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/test/ |
D | test_tracemalloc.py | 683 self.assertEqual(f.all_frames, False) 690 self.assertEqual(f.all_frames, True) 693 … f = tracemalloc.Filter(inclusive=False, filename_pattern="test.py", lineno=123, all_frames=True) 697 self.assertEqual(f.all_frames, True) 842 f = tracemalloc.Filter(True, "b.py", all_frames=True) 848 f = tracemalloc.Filter(True, "b.py", all_frames=False) 854 f = tracemalloc.Filter(False, "b.py", all_frames=True) 860 f = tracemalloc.Filter(False, "b.py", all_frames=False) 866 f = tracemalloc.Filter(False, "<unknown>", all_frames=False) 872 f = tracemalloc.Filter(True, "<unknown>", all_frames=True) [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | diracdec.c | 239 DiracFrame all_frames[MAX_FRAMES]; member 357 if (s->all_frames[i].avframe->data[0]) { in free_sequence_buffers() 358 av_frame_unref(s->all_frames[i].avframe); in free_sequence_buffers() 359 memset(s->all_frames[i].interpolated, 0, sizeof(s->all_frames[i].interpolated)); in free_sequence_buffers() 364 av_freep(&s->all_frames[i].hpel_base[j][k]); in free_sequence_buffers() 403 s->all_frames[i].avframe = av_frame_alloc(); in dirac_decode_init() 404 if (!s->all_frames[i].avframe) { in dirac_decode_init() 406 av_frame_free(&s->all_frames[--i].avframe); in dirac_decode_init() 432 av_frame_free(&s->all_frames[i].avframe); in dirac_decode_end() 2035 if (!s->all_frames[j].avframe->data[0]) { in dirac_decode_picture_header() [all …]
|
D | cbs_av1_syntax_template.c | 1308 int id_len, diff_len, all_frames, frame_is_intra, order_hint_bits; in FUNC() local 1320 all_frames = (1 << AV1_NUM_REF_FRAMES) - 1; in FUNC() 1356 infer(refresh_frame_flags, all_frames); in FUNC() 1489 infer(refresh_frame_flags, all_frames); in FUNC() 1493 if (!frame_is_intra || current->refresh_frame_flags != all_frames) { in FUNC()
|
/third_party/python/Lib/ |
D | tracemalloc.py | 355 lineno=None, all_frames=False, domain=None): argument 360 self.all_frames = all_frames 380 if self.all_frames:
|
/third_party/python/Doc/library/ |
D | tracemalloc.rst | 447 .. class:: Filter(inclusive: bool, filename_pattern: str, lineno: int=None, all_frames: bool=False,… 497 .. attribute:: all_frames 499 If *all_frames* is ``True``, all frames of the traceback are checked. If 500 *all_frames* is ``False``, only the most recent frame is checked.
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/ |
D | gstav1parser.c | 3508 gint segment_id /* segmentId */ , all_frames /* allFrames */ ; in gst_av1_parse_uncompressed_frame_header() local 3522 all_frames = (1 << GST_AV1_NUM_REF_FRAMES) - 1; in gst_av1_parse_uncompressed_frame_header() 3587 frame_header->refresh_frame_flags = all_frames; in gst_av1_parse_uncompressed_frame_header() 3804 frame_header->refresh_frame_flags = all_frames; in gst_av1_parse_uncompressed_frame_header() 3819 || frame_header->refresh_frame_flags != all_frames) { in gst_av1_parse_uncompressed_frame_header()
|