Lines Matching defs:size
954 Py_ssize_t size;
957 size = PyList_GET_SIZE(st->st_stack);
958 if (size) {
959 if (PyList_SetSlice(st->st_stack, size - 1, size, NULL) < 0)
961 if (--size)
962 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, size - 1);
1482 Py_ssize_t i, size;
1484 size = PyList_GET_SIZE(st->st_stack);
1485 assert(size);
1488 for (i = size - 1; i >= 0; i--) {