Home
last modified time | relevance | path

Searched refs:lnotab (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/
Dtrace.py267 lnotab = _find_executable_linenos(filename)
269 lnotab = {}
275 lnotab, count, encoding)
296 def write_results_file(self, path, lines, lnotab, lines_hit, encoding=None): argument
317 elif lineno in lnotab and not PRAGMA_NOCOVER in line:
/third_party/python/Doc/c-api/
Dcode.rst36 …reevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *lnotab)
43 …reevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *lnotab)
/third_party/python/Lib/test/
Dtest_peepholer.py46 lnotab = list(dis.findlinestarts(code))
49 min_bytecode = min(t[0] for t in lnotab)
50 max_bytecode = max(t[0] for t in lnotab)
/third_party/python/Include/cpython/
Dcode.h166 PyObject *names, PyObject *lnotab);
/third_party/python/Objects/
Dcodeobject.c411 unsigned char *lnotab = (unsigned char *) PyBytes_AS_STRING(*bytes); in emit_pair() local
412 lnotab += *offset; in emit_pair()
413 *lnotab++ = a; in emit_pair()
414 *lnotab++ = b; in emit_pair()
Dlnotab_notes.txt166 that the same line may appear multiple times in the lnotab, either because the
/third_party/python/Doc/data/
Drefcounts.dat253 PyCode_NewWithPosOnlyArgs:PyObject*:lnotab:0:
270 PyCode_New:PyObject*:lnotab:0:
/third_party/python/Python/
Dcompile.c6609 unsigned char *lnotab = (unsigned char *) PyBytes_AS_STRING(a->a_lnotab); in assemble_emit_linetable_pair() local
6610 lnotab += a->a_lnotab_off; in assemble_emit_linetable_pair()
6612 *lnotab++ = bdelta; in assemble_emit_linetable_pair()
6613 *lnotab++ = ldelta; in assemble_emit_linetable_pair()