/third_party/ffmpeg/libavcodec/ |
H A D | h263enc.h | 38 void ff_h263_encode_motion(PutBitContext *pb, int val, int f_code); 41 static inline int h263_get_motion_length(int val, int f_code) in h263_get_motion_length() argument 48 bit_size = f_code - 1; in h263_get_motion_length() 61 int x, int y, int f_code) in ff_h263_encode_motion_vector() 65 h263_get_motion_length(x, f_code) + in ff_h263_encode_motion_vector() 66 h263_get_motion_length(y, f_code)); in ff_h263_encode_motion_vector() 68 ff_h263_encode_motion(&s->pb, x, f_code); in ff_h263_encode_motion_vector() 69 ff_h263_encode_motion(&s->pb, y, f_code); in ff_h263_encode_motion_vector() 60 ff_h263_encode_motion_vector(MpegEncContext * s, int x, int y, int f_code) ff_h263_encode_motion_vector() argument
|
H A D | vaapi_encode_mpeg2.c | 391 .f_code = { { 15, 15 }, { 15, 15 } }, in vaapi_encode_mpeg2_init_sequence_params() 437 pce->f_code[0][0] = priv->f_code_horizontal; in vaapi_encode_mpeg2_init_picture_params() 438 pce->f_code[0][1] = priv->f_code_vertical; in vaapi_encode_mpeg2_init_picture_params() 440 pce->f_code[0][0] = 15; in vaapi_encode_mpeg2_init_picture_params() 441 pce->f_code[0][1] = 15; in vaapi_encode_mpeg2_init_picture_params() 444 pce->f_code[1][0] = priv->f_code_horizontal; in vaapi_encode_mpeg2_init_picture_params() 445 pce->f_code[1][1] = priv->f_code_vertical; in vaapi_encode_mpeg2_init_picture_params() 447 pce->f_code[1][0] = 15; in vaapi_encode_mpeg2_init_picture_params() 448 pce->f_code[1][1] = 15; in vaapi_encode_mpeg2_init_picture_params() 473 vpic->f_code[ in vaapi_encode_mpeg2_init_picture_params() [all...] |
H A D | mpeg12enc.c | 474 // RAL: Forward f_code also needed for B-frames in ff_mpeg1_encode_picture_header() 479 put_bits(&s->pb, 3, s->f_code); /* forward_f_code */ in ff_mpeg1_encode_picture_header() 484 // RAL: Backward f_code necessary for B-frames in ff_mpeg1_encode_picture_header() 501 put_bits(&s->pb, 4, s->f_code); in ff_mpeg1_encode_picture_header() 502 put_bits(&s->pb, 4, s->f_code); in ff_mpeg1_encode_picture_header() 874 // RAL: f_code parameter added in mpeg1_encode_mb_internal() 877 s->f_code); in mpeg1_encode_mb_internal() 878 // RAL: f_code parameter added in mpeg1_encode_mb_internal() 881 s->f_code); in mpeg1_encode_mb_internal() 889 // RAL: f_code paramete in mpeg1_encode_mb_internal() [all...] |
H A D | vdpau_mpeg12.c | 73 info->f_code[0][0] = s->mpeg_f_code[0][0]; in vdpau_mpeg_start_frame() 74 info->f_code[0][1] = s->mpeg_f_code[0][1]; in vdpau_mpeg_start_frame() 75 info->f_code[1][0] = s->mpeg_f_code[1][0]; in vdpau_mpeg_start_frame() 76 info->f_code[1][1] = s->mpeg_f_code[1][1]; in vdpau_mpeg_start_frame()
|
H A D | ituh263enc.c | 692 void ff_h263_encode_motion(PutBitContext *pb, int val, int f_code) in ff_h263_encode_motion() argument 701 bit_size = f_code - 1; in ff_h263_encode_motion() 722 int f_code; in init_mv_penalty_and_fcode() local 725 for(f_code=1; f_code<=MAX_FCODE; f_code++){ in init_mv_penalty_and_fcode() 733 bit_size = f_code - 1; in init_mv_penalty_and_fcode() 747 mv_penalty[f_code][mv+MAX_DMV]= len; in init_mv_penalty_and_fcode() 751 for(f_code=MAX_FCODE; f_code> in init_mv_penalty_and_fcode() [all...] |
H A D | cbs_mpeg2_syntax_template.c | 248 uir(4, f_code[0][0]); in picture_coding_extension() 249 uir(4, f_code[0][1]); in picture_coding_extension() 250 uir(4, f_code[1][0]); in picture_coding_extension() 251 uir(4, f_code[1][1]); in picture_coding_extension()
|
H A D | ratecontrol.c | 50 s->f_code, in ff_write_pass1_stats() 254 rce->pict_type == AV_PICTURE_TYPE_B ? (rce->f_code + rce->b_code) * 0.5 : rce->f_code, in get_qscale() 592 &rce->f_code, &rce->b_code, in ff_rate_control_init() 640 rce.f_code = 2; in ff_rate_control_init() 861 s->f_code = rce->f_code; in ff_get_2pass_fcode() 949 rce->f_code = s->f_code; in ff_rate_estimate_qscale()
|
H A D | h263dec.h | 43 int ff_h263_decode_motion(MpegEncContext * s, int pred, int f_code);
|
H A D | mpeg4video.c | 49 return s->f_code + 15; in ff_mpeg4_get_video_packet_prefix_length() 51 return FFMAX3(s->f_code, s->b_code, 2) + 15; in ff_mpeg4_get_video_packet_prefix_length()
|
/third_party/mesa3d/src/gallium/frontends/va/ |
H A 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/python/Include/internal/ |
H A D | pycore_frame.h | 53 PyCodeObject *f_code; /* Strong reference */ member 70 ((int)((IF)->prev_instr - _PyCode_CODE((IF)->f_code))) 73 return f->localsplus + f->f_code->co_nlocalsplus; in _PyFrame_Stackbase() 77 assert(f->stacktop > f->f_code->co_nlocalsplus); in _PyFrame_StackPeek() 83 assert(f->stacktop > f->f_code->co_nlocalsplus); in _PyFrame_StackPop() 107 frame->f_code = (PyCodeObject *)Py_NewRef(func->func_code); in _PyFrame_InitializeSpecials() 113 frame->prev_instr = _PyCode_CODE(frame->f_code) - 1; in _PyFrame_InitializeSpecials() 151 frame->prev_instr < _PyCode_CODE(frame->f_code) + frame->f_code->_co_firsttraceable; in _PyFrame_IsIncomplete()
|
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
H A 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[ in vid_dec_mpeg12_Decode() [all...] |
/third_party/python/Python/ |
H A D | frame.c | 15 Py_VISIT(frame->f_code); in _PyFrame_Traverse() 33 PyFrameObject *f = _PyFrame_New_NoTrack(frame->f_code); in _PyFrame_MakeAndSetFrameObject() 69 assert(src->stacktop >= src->f_code->co_nlocalsplus); in _PyFrame_Copy() 91 PyCodeObject *code = frame->f_code; in take_ownership() 146 Py_DECREF(frame->f_code); in _PyFrame_Clear() 169 return PyCode_Addr2Line(frame->f_code, addr); in _PyInterpreterFrame_GetLine()
|
/third_party/python/Lib/ |
H A 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 [all...] |
H A D | trace.py | 469 code = frame.f_code 536 code = frame.f_code 555 filename = frame.f_code.co_filename 570 filename = frame.f_code.co_filename 582 filename = frame.f_code.co_filename
|
/third_party/python/Objects/ |
H A D | frameobject.c | 94 if (PySys_Audit("object.__getattr__", "Os", f, "f_code") < 0) { in frame_getcode() 708 if (new_lineno < f->f_frame->f_code->co_firstlineno) { in frame_setlineno() 717 int len = (int)Py_SIZE(f->f_frame->f_code); in frame_setlineno() 718 int *lines = marklines(f->f_frame->f_code, len); in frame_setlineno() 732 int64_t *stacks = mark_stacks(f->f_frame->f_code, len); in frame_setlineno() 796 f->f_frame->prev_instr = _PyCode_CODE(f->f_frame->f_code) + best_addr; in frame_setlineno() 835 {"f_code", (getter)frame_getcode, NULL, NULL}, 869 co = frame->f_code; in frame_dealloc() 870 frame->f_code = NULL; in frame_dealloc() 944 PyCodeObject *code = f->f_frame->f_code; in frame_sizeof() [all...] |
/third_party/mesa3d/src/gallium/frontends/vdpau/ |
H A D | decode.c | 244 picture->f_code[0][0] = picture_info->f_code[0][0] - 1; in vlVdpDecoderRenderMpeg12() 245 picture->f_code[0][1] = picture_info->f_code[0][1] - 1; in vlVdpDecoderRenderMpeg12() 246 picture->f_code[1][0] = picture_info->f_code[1][0] - 1; in vlVdpDecoderRenderMpeg12() 247 picture->f_code[1][1] = picture_info->f_code[1][1] - 1; in vlVdpDecoderRenderMpeg12()
|
/third_party/python/Lib/idlelib/ |
H A 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 263 code = frame.f_code 399 code = frame.f_code 451 code = frame.f_code
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A 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/python/Lib/test/ |
H A D | test_frame.py | 61 self.assertIsNot(f.f_code, None) 119 lines.append(f.f_lineno-f.f_code.co_firstlineno) 367 sneaky_frame_object.f_code, SneakyThread.run.__code__
|
H A D | test_bdb.py | 314 self.check_equal(self.expect[2], self.frame.f_code.co_name, 323 fname = self.canonic(self.frame.f_code.co_filename) 325 return ((lineno - self.frame.f_code.co_firstlineno + 1) 329 return (self.frame.f_code.co_firstlineno + lineno - 1 335 co_name = self.frame.f_code.co_name 378 lineno = self.lno_rel2abs(self.frame.f_code.co_filename,
|
/third_party/jinja2/ |
H A D | debug.py | 51 if tb.tb_frame.f_code in internal_code: 114 function = tb.tb_frame.f_code.co_name
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A 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/ |
H A D | debug.py | 52 if tb.tb_frame.f_code in internal_code: 111 function = tb.tb_frame.f_code.co_name
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | radeon_uvd.c | 584 result.f_code[0][0] = pic->f_code[0][0] + 1; in get_mpeg2_msg() 585 result.f_code[0][1] = pic->f_code[0][1] + 1; in get_mpeg2_msg() 586 result.f_code[1][0] = pic->f_code[1][0] + 1; in get_mpeg2_msg() 587 result.f_code[1][1] = pic->f_code[1][1] + 1; in get_mpeg2_msg()
|