Lines Matching defs:offset
147 int offset;
253 /* instruction offset for block, computed by assemble_jump_offsets() */
331 int u_col_offset; /* the offset of the current stmt */
333 int u_end_col_offset; /* the end offset of the current stmt */
631 values are integers, starting at offset and increasing by one for
636 dictbytype(PyObject *src, int scope_type, int flag, Py_ssize_t offset)
638 Py_ssize_t i = offset, scope, num_keys, key_i;
642 assert(offset >= 0);
860 /* Returns the offset of the next instruction in the current block's
906 /* Set the line number and column offset for the following instructions.
7126 int a_offset; /* offset into bytecode */
7128 int a_except_table_off; /* offset into exception table */
7133 int a_lineno_start; /* bytecode start offset of current lineno */
7134 int a_end_lineno_start; /* bytecode start offset of current end_lineno */
7137 int a_location_off; /* offset of last written location info frame */
7823 dict_keys_inorder(PyObject *dict, Py_ssize_t offset)
7834 assert((i - offset) < size);
7835 assert((i - offset) >= 0);
7836 PyTuple_SET_ITEM(tuple, i - offset, k);
7941 int offset = (int)PyLong_AS_LONG(v);
7942 assert(offset >= 0);
7943 assert(offset < nlocalsplus);
7949 _Py_set_localsplus_info(offset, k, kind, names, kinds);
7962 int offset = (int)PyLong_AS_LONG(v);
7963 assert(offset >= 0);
7964 offset += nlocals - numdropped;
7965 assert(offset < nlocalsplus);
7966 _Py_set_localsplus_info(offset, k, CO_FAST_CELL, names, kinds);
7971 int offset = (int)PyLong_AS_LONG(v);
7972 assert(offset >= 0);
7973 offset += nlocals - numdropped;
7974 assert(offset < nlocalsplus);
7975 _Py_set_localsplus_info(offset, k, CO_FAST_FREE, names, kinds);
8098 fprintf(stderr, "used: %d, depth: %d, offset: %d %s\n",