Lines Matching defs:end
1257 indirect jump instruction at the end of each opcode. Since the jump
5697 /* This should never be reached. Every opcode should end with DISPATCH()
5913 Py_ssize_t start, end;
5924 end = co->co_argcount - defcount;
5928 end = start + co->co_kwonlyargcount;
5930 for (i = start; i < end; i++) {
6076 skip_to_next_entry(unsigned char *p, unsigned char *end) {
6077 while (p < end && ((p[0] & 128) == 0)) {
6090 unsigned char *end = start + PyBytes_GET_SIZE(code->co_exceptiontable);
6096 if (end - start > MAX_LINEAR_SEARCH) {
6103 unsigned char * mid = start + ((end-start)>>1);
6107 end = mid;
6113 } while (end - start > MAX_LINEAR_SEARCH);
6116 while (scan < end) {
6131 scan = skip_to_next_entry(scan, end);