Home
last modified time | relevance | path

Searched refs:f_code (Results 1 – 25 of 97) sorted by relevance

1234

/external/mesa3d/src/gallium/state_trackers/va/
Dpicture_mpeg12.c41 context->desc.mpeg12.f_code[0][0] = ((mpeg2->f_code >> 12) & 0xf) - 1; in vlVaHandlePictureParameterBufferMPEG12()
42 context->desc.mpeg12.f_code[0][1] = ((mpeg2->f_code >> 8) & 0xf) - 1; in vlVaHandlePictureParameterBufferMPEG12()
43 context->desc.mpeg12.f_code[1][0] = ((mpeg2->f_code >> 4) & 0xf) - 1; in vlVaHandlePictureParameterBufferMPEG12()
44 context->desc.mpeg12.f_code[1][1] = (mpeg2->f_code & 0xf) - 1; in vlVaHandlePictureParameterBufferMPEG12()
/external/python/cpython3/Objects/
Dframeobject.c15 {"f_code", T_OBJECT, OFF(f_code), READONLY},
39 return PyCode_Addr2Line(f->f_code, f->f_lasti); in PyFrame_GetLineNumber()
147 if (new_lineno < f->f_code->co_firstlineno) { in frame_setlineno()
153 else if (new_lineno == f->f_code->co_firstlineno) { in frame_setlineno()
155 new_lineno = f->f_code->co_firstlineno; in frame_setlineno()
161 PyBytes_AsStringAndSize(f->f_code->co_lnotab, in frame_setlineno()
165 line = f->f_code->co_firstlineno; in frame_setlineno()
187 PyBytes_AsStringAndSize(f->f_code->co_code, (char **)&code, &code_len); in frame_setlineno()
484 co = f->f_code; in frame_dealloc()
506 Py_VISIT(f->f_code); in frame_traverse()
[all …]
/external/mesa3d/src/gallium/state_trackers/omx_bellagio/
Dvid_dec_mpeg12.c240 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()
/external/python/cpython2/Objects/
Dframeobject.c19 {"f_code", T_OBJECT, OFF(f_code), RO},
69 return PyCode_Addr2Line(f->f_code, f->f_lasti); in PyFrame_GetLineNumber()
159 if (new_lineno < f->f_code->co_firstlineno) { in frame_setlineno()
165 else if (new_lineno == f->f_code->co_firstlineno) { in frame_setlineno()
167 new_lineno = f->f_code->co_firstlineno; in frame_setlineno()
173 PyString_AsStringAndSize(f->f_code->co_lnotab, in frame_setlineno()
177 line = f->f_code->co_firstlineno; in frame_setlineno()
199 PyString_AsStringAndSize(f->f_code->co_code, (char **)&code, &code_len); in frame_setlineno()
511 co = f->f_code; in frame_dealloc()
533 Py_VISIT(f->f_code); in frame_traverse()
[all …]
/external/python/cpython3/Lib/
Dbdb.py132 if self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS:
147 if self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS:
171 if not (frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS
180 and self.stopframe.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS
219 filename = self.canonic(frame.f_code.co_filename)
226 lineno = frame.f_code.co_firstlineno
250 return self.canonic(frame.f_code.co_filename) in self.breaks
314 if frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS:
543 filename = self.canonic(frame.f_code.co_filename)
545 if frame.f_code.co_name:
[all …]
Dtrace.py467 code = frame.f_code
534 code = frame.f_code
553 filename = frame.f_code.co_filename
568 filename = frame.f_code.co_filename
580 filename = frame.f_code.co_filename
/external/python/cpython2/Lib/
Dbdb.py127 filename = self.canonic(frame.f_code.co_filename)
134 lineno = frame.f_code.co_firstlineno
152 return self.canonic(frame.f_code.co_filename) in self.breaks
364 filename = self.canonic(frame.f_code.co_filename)
366 if frame.f_code.co_name:
367 s = s + frame.f_code.co_name
545 if frame.f_code.co_name != b.funcname:
616 name = frame.f_code.co_name
621 name = frame.f_code.co_name
623 fn = self.canonic(frame.f_code.co_filename)
Dtraceback.py63 co = f.f_code
97 co = f.f_code
302 co = f.f_code
Dtrace.py530 code = frame.f_code
597 code = frame.f_code
616 filename = frame.f_code.co_filename
631 filename = frame.f_code.co_filename
643 filename = frame.f_code.co_filename
Dinspect.py415 object = object.f_code
572 object = object.f_code
696 (isframe(object) and object.f_code.co_name == "<module>")):
838 args, varargs, varkw = getargs(frame.f_code)
1033 return Traceback(filename, lineno, frame.f_code.co_name, lines, index)
/external/python/cpython3/Misc/
Dgdbinit37 while $_i < f->f_code->co_nlocals
39 set $_names = f->f_code->co_varnames
52 set $__co = f->f_code
79 set $__fn = PyUnicode_AsUTF8(f->f_code->co_filename)
80 set $__n = PyUnicode_AsUTF8(f->f_code->co_name)
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_mpeg12_bitstream.c632 int r_size = bs->desc->f_code[s][t]; in motion_vector()
670 mb->PMV[0][s][0] = wrap(mb->PMV[0][s][0] + delta[0], bs->desc->f_code[s][0]); in motion_vector_frame()
671 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()
675 mb->PMV[1][s][0] = wrap(mb->PMV[1][s][0] + delta[0], bs->desc->f_code[s][0]); in motion_vector_frame()
676 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()
680 mb->PMV[0][s][0] = wrap(mb->PMV[0][s][0] + delta[0], bs->desc->f_code[s][0]); in motion_vector_frame()
681 mb->PMV[0][s][1] = wrap(mb->PMV[0][s][1] + delta[1], bs->desc->f_code[s][1]); in motion_vector_frame()
/external/python/cpython3/Python/
Dtraceback.c554 tb->tb_frame->f_code->co_filename != last_file || in tb_printinternal()
556 last_name == NULL || tb->tb_frame->f_code->co_name != last_name) { in tb_printinternal()
560 last_file = tb->tb_frame->f_code->co_filename; in tb_printinternal()
562 last_name = tb->tb_frame->f_code->co_name; in tb_printinternal()
568 tb->tb_frame->f_code->co_filename, in tb_printinternal()
570 tb->tb_frame->f_code->co_name); in tb_printinternal()
749 code = frame->f_code; in dump_frame()
/external/mesa3d/src/gallium/state_trackers/vdpau/
Ddecode.c249 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()
/external/python/cpython3/Lib/idlelib/
Ddebugger.py36 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
Dstackviewer.py72 code = frame.f_code
97 filename = frame.f_code.co_filename
/external/python/cpython2/Lib/idlelib/
DDebugger.py33 if frame.f_code.co_filename.count('rpc.py'):
37 if prev_frame.f_code.co_filename.count('Debugger.py'):
43 code = frame.f_code
257 code = frame.f_code
394 code = frame.f_code
447 code = frame.f_code
DStackViewer.py70 code = frame.f_code
95 filename = frame.f_code.co_filename
/external/python/cpython3/Lib/test/
Dtest_bdb.py313 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,
/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_vp3_video_bsp.c42 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()
/external/python/cpython2/Python/
Dtraceback.c245 tb->tb_frame->f_code->co_filename), in tb_printinternal()
247 PyString_AsString(tb->tb_frame->f_code->co_name)); in tb_printinternal()
/external/tensorflow/tensorflow/python/platform/
Dtf_logging.py51 our_file = f.f_code.co_filename
54 code = f.f_code
/external/python/cpython2/Include/
Dframeobject.h19 PyCodeObject *f_code; /* code segment */ member
/external/python/cpython3/Include/
Dframeobject.h20 PyCodeObject *f_code; /* code segment */ member
/external/tensorflow/tensorflow/python/util/
Dtf_stack.py62 co = f.f_code

1234