Home
last modified time | relevance | path

Searched refs:PyCode_Addr2Line (Results 1 – 17 of 17) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/python/
Dtraceback.cc92 PyCode_Addr2Line(frame.first, frame.second)}); in Frames()
128 /*tb_lineno=*/PyCode_Addr2Line(frame.first, frame.second)); in AsPythonTraceback()
190 return PyCode_Addr2Line(reinterpret_cast<PyCodeObject*>(code.ptr()), in BuildTracebackSubmodule()
Dpprof_profile_builder.cc62 line->set_line(PyCode_Addr2Line(code, instruction)); in LocationId()
/external/python/cpython3/Python/
Dframe.c153 return PyCode_Addr2Line(_PyFrame_GetCode(frame), addr); in PyUnstable_InterpreterFrame_GetLine()
Dtraceback.c114 return PyCode_Addr2Line(_PyFrame_GetCode(frame), tb->tb_lasti); in tb_get_lineno()
Dinstrumentation.c308 return PyCode_Addr2Line(code, offset * sizeof(_Py_CODEUNIT)); in compute_line()
442 …fprintf(out, "Offset: %d, line: %d %s: ", i, PyCode_Addr2Line(code, i*2), _PyOpcode_OpName[opcode]… in dump_instrumentation_data()
554 int line2 = PyCode_Addr2Line(code, i*sizeof(_Py_CODEUNIT)); in sanity_check_instrumentation()
/external/pytorch/torch/csrc/profiler/python/
Dcombined_traceback.cpp91 auto lineno = PyCode_Addr2Line(f_code, f.lasti); in appendSymbolized()
/external/python/cpython3/Include/cpython/
Dcode.h239 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
/external/pytorch/torch/csrc/jit/python/
Dpython_tracer.cpp33 size_t line = PyCode_Addr2Line(code.get(), PyFrame_GetLasti(frame)); in _pythonCallstack()
/external/python/cpython3/Objects/
Dlnotab_notes.txt143 (In C, this is implemented by PyCode_Addr2Line().) In order for this to work,
Dcodeobject.c953 PyCode_Addr2Line(PyCodeObject *co, int addrq) in PyCode_Addr2Line() function
/external/python/cpython3/Doc/c-api/
Dcode.rst96 .. c:function:: int PyCode_Addr2Line(PyCodeObject *co, int byte_offset)
/external/python/cpython3/Doc/whatsnew/
D3.10.rst1976 instead (like :c:func:`PyCode_Addr2Line` for example). Notice as well that the
D3.6.rst2180 ``PyFrame_GetLineNumber()`` or ``PyCode_Addr2Line()`` are not affected.
D2.3.rst2002 instead call ``PyCode_Addr2Line(f->f_code, f->f_lasti)``. This will have the
D3.11.rst2462 Code using ``f_lasti`` with ``PyCode_Addr2Line()`` should use
/external/python/cpython3/Doc/data/
Dpython3.13.abi69 …<elf-symbol name='PyCode_Addr2Line' type='func-type' binding='global-binding' visibility='default-…
5971PyCode_Addr2Line' mangled-name='PyCode_Addr2Line' filepath='Objects/codeobject.c' line='953' colum…
/external/python/cpython3/Misc/
DHISTORY13111 PyCode_Addr2Line().
22436 PyCode_Addr2Line instead (f_lineno is still there, but only kept up