Lines Matching defs:index

1507     assert(cache->index < dict->ma_keys->dk_nentries); \
1508 PyDictUnicodeEntry *ep = DK_UNICODE_ENTRIES(dict->ma_keys) + cache->index; \
2177 Py_ssize_t index = ((PyLongObject*)sub)->ob_digit[0];
2178 DEOPT_IF(index >= PyList_GET_SIZE(list), BINARY_SUBSCR);
2180 PyObject *res = PyList_GET_ITEM(list, index);
2202 Py_ssize_t index = ((PyLongObject*)sub)->ob_digit[0];
2203 DEOPT_IF(index >= PyTuple_GET_SIZE(tuple), BINARY_SUBSCR);
2205 PyObject *res = PyTuple_GET_ITEM(tuple, index);
2343 Py_ssize_t index = ((PyLongObject*)sub)->ob_digit[0];
2344 // Ensure index < len(list)
2345 DEOPT_IF(index >= PyList_GET_SIZE(list), STORE_SUBSCR);
2348 PyObject *old_value = PyList_GET_ITEM(list, index);
2349 PyList_SET_ITEM(list, index, value);
3079 PyObject *res = entries[cache->index].me_value;
3104 PyObject *res = entries[cache->index].me_value;
3509 res = values->values[cache->index];
3545 uint16_t hint = cache->index;
3575 char *addr = (char *)owner + cache->index;
3618 Py_ssize_t index = cache->index;
3621 PyObject *old_value = values->values[index];
3622 values->values[index] = value;
3624 _PyDictValues_AddToInsertionOrder(values, index);
3647 uint16_t hint = cache->index;
3689 char *addr = (char *)owner + cache->index;
4580 /* Treat index as a signed 16 bit value */
6087 get_exception_handler(PyCodeObject *code, int index, int *level, int *handler, int *lasti)
6094 * beyond the table or to a legal entry that is after index.
6099 if (offset > index) {
6106 if (offset > index) {
6119 if (start_offset > index) {
6123 if (start_offset + size > index) {
7360 /* Extract a slice index from a PyLong or an object with the