Searched refs:instr_ub (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Objects/ |
D | lnotab_notes.txt | 63 *instr_lb <= frame->f_lasti < *instr_ub 66 the first bytecode index of the current line, and *instr_ub holds the first 71 the compiler inserted the same line twice. Even in that case, *instr_ub holds
|
/external/python/cpython3/Objects/ |
D | lnotab_notes.txt | 70 *instr_lb <= frame->f_lasti < *instr_ub 73 the first bytecode index of the current line, and *instr_ub holds the first 78 the compiler inserted the same line twice. Even in that case, *instr_ub holds
|
/external/python/cpython3/Python/ |
D | ceval.c | 573 int instr_ub = -1, instr_lb = 0, instr_prev = -1; in _PyEval_EvalFrameDefault() local 1011 maybe_dtrace_line(f, &instr_lb, &instr_ub, &instr_prev); in _PyEval_EvalFrameDefault() 1025 &instr_lb, &instr_ub, &instr_prev); in _PyEval_EvalFrameDefault() 4280 int *instr_lb, int *instr_ub, int *instr_prev) in maybe_call_line_trace() argument 4288 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) { in maybe_call_line_trace() 4293 *instr_ub = bounds.ap_upper; in maybe_call_line_trace() 5148 int *instr_lb, int *instr_ub, int *instr_prev) in maybe_dtrace_line() argument 5156 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) { in maybe_dtrace_line() 5161 *instr_ub = bounds.ap_upper; in maybe_dtrace_line()
|
/external/python/cpython2/Python/ |
D | ceval.c | 820 int instr_ub = -1, instr_lb = 0, instr_prev = -1; in PyEval_EvalFrameEx() local 1159 f, &instr_lb, &instr_ub, in PyEval_EvalFrameEx() 4071 PyFrameObject *frame, int *instr_lb, int *instr_ub, in maybe_call_line_trace() argument 4080 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) { in maybe_call_line_trace() 4085 *instr_ub = bounds.ap_upper; in maybe_call_line_trace()
|