/third_party/mesa3d/src/gallium/frontends/va/ |
D | picture_mpeg12.c | 54 context->desc.mpeg12.f_code[0][0] = ((mpeg2->f_code >> 12) & 0xf) - 1; in vlVaHandlePictureParameterBufferMPEG12() 55 context->desc.mpeg12.f_code[0][1] = ((mpeg2->f_code >> 8) & 0xf) - 1; in vlVaHandlePictureParameterBufferMPEG12() 56 context->desc.mpeg12.f_code[1][0] = ((mpeg2->f_code >> 4) & 0xf) - 1; in vlVaHandlePictureParameterBufferMPEG12() 57 context->desc.mpeg12.f_code[1][1] = (mpeg2->f_code & 0xf) - 1; in vlVaHandlePictureParameterBufferMPEG12()
|
/third_party/ffmpeg/libavcodec/ |
D | h263.h | 53 int ff_h263_decode_motion(MpegEncContext * s, int pred, int f_code); 99 void ff_h263_encode_motion(PutBitContext *pb, int val, int f_code); 102 static inline int h263_get_motion_length(int val, int f_code){ in h263_get_motion_length() argument 108 bit_size = f_code - 1; in h263_get_motion_length() 119 static inline void ff_h263_encode_motion_vector(MpegEncContext * s, int x, int y, int f_code){ in ff_h263_encode_motion_vector() argument 122 h263_get_motion_length(x, f_code) in ff_h263_encode_motion_vector() 123 +h263_get_motion_length(y, f_code)); in ff_h263_encode_motion_vector() 125 ff_h263_encode_motion(&s->pb, x, f_code); in ff_h263_encode_motion_vector() 126 ff_h263_encode_motion(&s->pb, y, f_code); in ff_h263_encode_motion_vector()
|
D | vaapi_encode_mpeg2.c | 389 .f_code = { { 15, 15 }, { 15, 15 } }, in vaapi_encode_mpeg2_init_sequence_params() 435 pce->f_code[0][0] = priv->f_code_horizontal; in vaapi_encode_mpeg2_init_picture_params() 436 pce->f_code[0][1] = priv->f_code_vertical; in vaapi_encode_mpeg2_init_picture_params() 438 pce->f_code[0][0] = 15; in vaapi_encode_mpeg2_init_picture_params() 439 pce->f_code[0][1] = 15; in vaapi_encode_mpeg2_init_picture_params() 442 pce->f_code[1][0] = priv->f_code_horizontal; in vaapi_encode_mpeg2_init_picture_params() 443 pce->f_code[1][1] = priv->f_code_vertical; in vaapi_encode_mpeg2_init_picture_params() 445 pce->f_code[1][0] = 15; in vaapi_encode_mpeg2_init_picture_params() 446 pce->f_code[1][1] = 15; in vaapi_encode_mpeg2_init_picture_params() 471 vpic->f_code[0][0] = pce->f_code[0][0]; in vaapi_encode_mpeg2_init_picture_params() [all …]
|
D | mpeg12enc.c | 450 put_bits(&s->pb, 3, s->f_code); /* forward_f_code */ in ff_mpeg1_encode_picture_header() 472 put_bits(&s->pb, 4, s->f_code); in ff_mpeg1_encode_picture_header() 473 put_bits(&s->pb, 4, s->f_code); in ff_mpeg1_encode_picture_header() 845 s->f_code); in mpeg1_encode_mb_internal() 849 s->f_code); in mpeg1_encode_mb_internal() 860 s->f_code); in mpeg1_encode_mb_internal() 864 s->f_code); in mpeg1_encode_mb_internal() 890 s->f_code); in mpeg1_encode_mb_internal() 893 s->f_code); in mpeg1_encode_mb_internal() 934 s->f_code); in mpeg1_encode_mb_internal() [all …]
|
D | ituh263enc.c | 646 void ff_h263_encode_motion(PutBitContext *pb, int val, int f_code) in ff_h263_encode_motion() argument 655 bit_size = f_code - 1; in ff_h263_encode_motion() 676 int f_code; in init_mv_penalty_and_fcode() local 679 for(f_code=1; f_code<=MAX_FCODE; f_code++){ in init_mv_penalty_and_fcode() 687 bit_size = f_code - 1; in init_mv_penalty_and_fcode() 701 mv_penalty[f_code][mv+MAX_DMV]= len; in init_mv_penalty_and_fcode() 705 for(f_code=MAX_FCODE; f_code>0; f_code--){ in init_mv_penalty_and_fcode() 706 for(mv=-(16<<f_code); mv<(16<<f_code); mv++){ in init_mv_penalty_and_fcode() 707 fcode_tab[mv+MAX_MV]= f_code; in init_mv_penalty_and_fcode()
|
D | vdpau_mpeg12.c | 71 info->f_code[0][0] = s->mpeg_f_code[0][0]; in vdpau_mpeg_start_frame() 72 info->f_code[0][1] = s->mpeg_f_code[0][1]; in vdpau_mpeg_start_frame() 73 info->f_code[1][0] = s->mpeg_f_code[1][0]; in vdpau_mpeg_start_frame() 74 info->f_code[1][1] = s->mpeg_f_code[1][1]; in vdpau_mpeg_start_frame()
|
D | cbs_mpeg2_syntax_template.c | 248 uir(4, f_code[0][0]); in FUNC() 249 uir(4, f_code[0][1]); in FUNC() 250 uir(4, f_code[1][0]); in FUNC() 251 uir(4, f_code[1][1]); in FUNC()
|
D | ratecontrol.c | 51 s->f_code, in ff_write_pass1_stats() 255 rce->pict_type == AV_PICTURE_TYPE_B ? (rce->f_code + rce->b_code) * 0.5 : rce->f_code, in get_qscale() 593 &rce->f_code, &rce->b_code, in ff_rate_control_init() 641 rce.f_code = 2; in ff_rate_control_init() 862 s->f_code = rce->f_code; in ff_get_2pass_fcode() 950 rce->f_code = s->f_code; in ff_rate_estimate_qscale()
|
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
D | vid_dec_mpeg12.c | 240 priv->picture.mpeg12.f_code[0][0] = vl_vlc_get_uimsbf(vlc, 3) - 1; in vid_dec_mpeg12_Decode() 241 priv->picture.mpeg12.f_code[0][1] = priv->picture.mpeg12.f_code[0][0]; in vid_dec_mpeg12_Decode() 244 priv->picture.mpeg12.f_code[0][1] = priv->picture.mpeg12.f_code[0][0] = 14; in vid_dec_mpeg12_Decode() 250 priv->picture.mpeg12.f_code[1][0] = vl_vlc_get_uimsbf(vlc, 3) - 1; in vid_dec_mpeg12_Decode() 251 priv->picture.mpeg12.f_code[1][1] = priv->picture.mpeg12.f_code[1][0]; in vid_dec_mpeg12_Decode() 254 priv->picture.mpeg12.f_code[0][1] = priv->picture.mpeg12.f_code[0][0] = 14; in vid_dec_mpeg12_Decode() 298 priv->picture.mpeg12.f_code[0][0] = vl_vlc_get_uimsbf(vlc, 4) - 1; in vid_dec_mpeg12_Decode() 299 priv->picture.mpeg12.f_code[0][1] = vl_vlc_get_uimsbf(vlc, 4) - 1; in vid_dec_mpeg12_Decode() 300 priv->picture.mpeg12.f_code[1][0] = vl_vlc_get_uimsbf(vlc, 4) - 1; in vid_dec_mpeg12_Decode() 301 priv->picture.mpeg12.f_code[1][1] = vl_vlc_get_uimsbf(vlc, 4) - 1; in vid_dec_mpeg12_Decode()
|
/third_party/python/Lib/ |
D | bdb.py | 134 if self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS: 149 if self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS: 173 if not (frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS 182 and self.stopframe.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS 223 filename = self.canonic(frame.f_code.co_filename) 230 lineno = frame.f_code.co_firstlineno 254 return self.canonic(frame.f_code.co_filename) in self.breaks 318 if frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS: 562 filename = self.canonic(frame.f_code.co_filename) 564 if frame.f_code.co_name: [all …]
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/ |
D | gstmpegvideoparser.c | 735 READ_UINT8 (&br, ext->f_code[0][0], 4); in gst_mpeg_video_packet_parse_picture_extension() 736 READ_UINT8 (&br, ext->f_code[0][1], 4); in gst_mpeg_video_packet_parse_picture_extension() 737 READ_UINT8 (&br, ext->f_code[1][0], 4); in gst_mpeg_video_packet_parse_picture_extension() 738 READ_UINT8 (&br, ext->f_code[1][1], 4); in gst_mpeg_video_packet_parse_picture_extension() 848 READ_UINT8 (&br, hdr->f_code[0][0], 3); in gst_mpeg_video_packet_parse_picture_header() 849 hdr->f_code[0][1] = hdr->f_code[0][0]; in gst_mpeg_video_packet_parse_picture_header() 852 hdr->f_code[0][0] = hdr->f_code[0][1] = 0; in gst_mpeg_video_packet_parse_picture_header() 858 READ_UINT8 (&br, hdr->f_code[1][0], 3); in gst_mpeg_video_packet_parse_picture_header() 859 hdr->f_code[1][1] = hdr->f_code[1][0]; in gst_mpeg_video_packet_parse_picture_header() 862 hdr->f_code[1][0] = hdr->f_code[1][1] = 0; in gst_mpeg_video_packet_parse_picture_header()
|
D | gstmpegvideoparser.h | 398 guint8 f_code[2][2]; member 419 guint8 f_code[2][2]; member
|
/third_party/python/Objects/ |
D | frameobject.c | 16 {"f_code", T_OBJECT, OFF(f_code), READONLY|PY_AUDIT_READ}, 49 return PyCode_Addr2Line(f->f_code, f->f_lasti*sizeof(_Py_CODEUNIT)); in PyFrame_GetLineNumber() 407 if (new_lineno < f->f_code->co_firstlineno) { in frame_setlineno() 416 int len = (int)(PyBytes_GET_SIZE(f->f_code->co_code) / sizeof(_Py_CODEUNIT)); in frame_setlineno() 417 int *lines = marklines(f->f_code, len); in frame_setlineno() 431 int64_t *blocks = markblocks(f->f_code, len); in frame_setlineno() 603 PyCodeObject *co = f->f_code; in frame_dealloc() 630 PyCodeObject *code = frame->f_code; in frame_nslots() 640 Py_VISIT(f->f_code); in frame_traverse() 709 PyCodeObject *code = f->f_code; in frame_sizeof() [all …]
|
/third_party/quickjs/ |
D | unicode_gen.c | 232 int f_code; member 542 assert(ci->f_code == 0); in parse_case_folding() 543 ci->f_code = strtoul(p, NULL, 16); in parse_case_folding() 544 assert(ci->f_code != 0 && ci->f_code != code); in parse_case_folding() 871 if (ci->f_code != 0) { in dump_cc_info() 872 printf(" F: %05x", ci->f_code); in dump_cc_info() 883 if (ci->u_len != 0 || ci->l_len != 0 || ci->f_code != 0) { in dump_data() 893 (ci->f_code != 0) != ci->l_len || in is_complicated_case() 894 (ci->f_code != 0 && ci->l_data[0] != ci->f_code)); in is_complicated_case() 956 ci->f_code == ci->l_data[0] && in find_run_type() [all …]
|
/third_party/python/Misc/ |
D | gdbinit | 40 while $_i < f->f_code->co_nlocals 42 set $_names = f->f_code->co_varnames 58 set $__co = f->f_code 87 set $__fn = PyUnicode_AsUTF8(f->f_code->co_filename) 88 set $__n = PyUnicode_AsUTF8(f->f_code->co_name)
|
/third_party/gstreamer/gstplugins_bad/sys/va/ |
D | gstvampeg2dec.c | 348 _pack_f_code (guint8 f_code[2][2]) in _pack_f_code() 350 return (((guint32) f_code[0][0] << 12) in _pack_f_code() 351 | ((guint32) f_code[0][1] << 8) in _pack_f_code() 352 | ((guint32) f_code[1][0] << 4) in _pack_f_code() 353 | (f_code[1][1])); in _pack_f_code() 458 .f_code = _pack_f_code (slice->pic_ext->f_code), in gst_va_mpeg2_dec_start_picture()
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_mpeg12_bitstream.c | 626 int r_size = bs->desc->f_code[s][t]; in motion_vector() 664 mb->PMV[0][s][0] = wrap(mb->PMV[0][s][0] + delta[0], bs->desc->f_code[s][0]); in motion_vector_frame() 665 mb->PMV[0][s][1] = wrap(DIV2DOWN(mb->PMV[0][s][1]) + delta[1], bs->desc->f_code[s][1]) * 2; in motion_vector_frame() 669 mb->PMV[1][s][0] = wrap(mb->PMV[1][s][0] + delta[0], bs->desc->f_code[s][0]); in motion_vector_frame() 670 mb->PMV[1][s][1] = wrap(DIV2DOWN(mb->PMV[1][s][1]) + delta[1], bs->desc->f_code[s][1]) * 2; in motion_vector_frame() 674 mb->PMV[0][s][0] = wrap(mb->PMV[0][s][0] + delta[0], bs->desc->f_code[s][0]); in motion_vector_frame() 675 mb->PMV[0][s][1] = wrap(mb->PMV[0][s][1] + delta[1], bs->desc->f_code[s][1]); in motion_vector_frame()
|
/third_party/mesa3d/src/gallium/frontends/vdpau/ |
D | decode.c | 249 picture->f_code[0][0] = picture_info->f_code[0][0] - 1; in vlVdpDecoderRenderMpeg12() 250 picture->f_code[0][1] = picture_info->f_code[0][1] - 1; in vlVdpDecoderRenderMpeg12() 251 picture->f_code[1][0] = picture_info->f_code[1][0] - 1; in vlVdpDecoderRenderMpeg12() 252 picture->f_code[1][1] = picture_info->f_code[1][1] - 1; in vlVdpDecoderRenderMpeg12()
|
/third_party/python/Lib/idlelib/ |
D | debugger.py | 36 if frame.f_code.co_filename.count('rpc.py'): 40 prev_name = prev_frame.f_code.co_filename 48 code = frame.f_code 262 code = frame.f_code 398 code = frame.f_code 450 code = frame.f_code
|
D | stackviewer.py | 72 code = frame.f_code 97 filename = frame.f_code.co_filename
|
/third_party/jinja2/ |
D | debug.py | 52 if tb.tb_frame.f_code in internal_code: 111 function = tb.tb_frame.f_code.co_name
|
/third_party/skia/third_party/externals/jinja2/ |
D | debug.py | 52 if tb.tb_frame.f_code in internal_code: 111 function = tb.tb_frame.f_code.co_name
|
/third_party/gstreamer/gstplugins_bad/sys/d3d11/ |
D | gstd3d11mpeg2dec.cpp | 492 _pack_f_codes (guint8 f_code[2][2]) in _pack_f_codes() 494 return (((WORD) f_code[0][0] << 12) in _pack_f_codes() 495 | ((WORD) f_code[0][1] << 8) in _pack_f_codes() 496 | ((WORD) f_code[1][0] << 4) in _pack_f_codes() 497 | (f_code[1][1])); in _pack_f_codes() 589 pic_params->wBitstreamFcodes = _pack_f_codes (slice->pic_ext->f_code); in gst_d3d11_mpeg2_dec_start_picture()
|
/third_party/python/Lib/test/ |
D | test_bdb.py | 313 self.check_equal(self.expect[2], self.frame.f_code.co_name, 322 fname = self.canonic(self.frame.f_code.co_filename) 324 return ((lineno - self.frame.f_code.co_firstlineno + 1) 328 return (self.frame.f_code.co_firstlineno + lineno - 1 334 co_name = self.frame.f_code.co_name 377 lineno = self.lno_rel2abs(self.frame.f_code.co_filename,
|
/third_party/mesa3d/src/gallium/drivers/nouveau/ |
D | nouveau_vp3_video_bsp.c | 42 uint8_t f_code[2][2]; member 129 pic_bsp->f_code[i/2][i%2] = desc->f_code[i/2][i%2] + 1; // FU in nouveau_vp3_fill_picparm_mpeg12_bsp()
|