Lines Matching defs:start
1572 the start of each executed line of code.
5461 PyObject *start, *stop, *step, *slice;
5467 start = TOP();
5468 slice = PySlice_New(start, stop, step);
5469 Py_DECREF(start);
5665 // next_instr wasn't incremented at the start of this
5913 Py_ssize_t start, end;
5923 start = 0;
5927 start = co->co_argcount;
5928 end = start + co->co_kwonlyargcount;
5930 for (i = start; i < end; i++) {
6089 unsigned char *start = (unsigned char *)PyBytes_AS_STRING(code->co_exceptiontable);
6090 unsigned char *end = start + PyBytes_GET_SIZE(code->co_exceptiontable);
6096 if (end - start > MAX_LINEAR_SEARCH) {
6098 parse_varint(start, &offset);
6103 unsigned char * mid = start + ((end-start)>>1);
6110 start = mid;
6113 } while (end - start > MAX_LINEAR_SEARCH);
6115 unsigned char *scan = start;
6910 /* If the last instruction falls at the start of a line or if it