Home
last modified time | relevance | path

Searched defs:_ProfilerEntry (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
D_lsprof.c77 typedef struct _ProfilerEntry { struct
78 rotating_node_t header;
79 PyObject *userObj; /* PyCodeObject, or a descriptive str for builtins */
80 long long tt; /* total time in this entry */
81 long long it; /* inline time in this entry (not in subcalls) */
82 long callcount; /* how many times this was called */
83 long recursivecallcount; /* how many times called recursively */
84 long recursionLevel;
85 rotating_node_t *calls;
/external/python/cpython2/Modules/
D_lsprof.c87 typedef struct _ProfilerEntry { struct
88 rotating_node_t header;
89 PyObject *userObj; /* PyCodeObject, or a descriptive str for builtins */
90 PY_LONG_LONG tt; /* total time in this entry */
91 PY_LONG_LONG it; /* inline time in this entry (not in subcalls) */
92 long callcount; /* how many times this was called */
93 long recursivecallcount; /* how many times called recursively */
94 long recursionLevel;
95 rotating_node_t *calls;