Home
last modified time | relevance | path

Searched defs:PyCodeObject (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Include/cpython/
Dcode.h18 struct PyCodeObject { struct
20 int co_argcount; /* #arguments, except *args */
21 int co_posonlyargcount; /* #positional only arguments */
22 int co_kwonlyargcount; /* #keyword only arguments */
23 int co_nlocals; /* #local variables */
24 int co_stacksize; /* #entries needed for evaluation stack */
25 int co_flags; /* CO_..., see below */
26 int co_firstlineno; /* first source line number */
27 PyObject *co_code; /* instruction opcodes */
28 PyObject *co_consts; /* list (constants used) */
[all …]
/external/python/cpython3/Include/
Dcode.h9 typedef struct PyCodeObject PyCodeObject; typedef
/external/tensorflow/tensorflow/compiler/xla/python/
Dpython_ref_manager.cc60 absl::Span<std::pair<PyCodeObject*, int> const> garbage) { in AddGarbage()
/external/python/cpython2/Include/
Dcode.h30 } PyCodeObject; typedef