Searched defs:dequeobject (Results 1 – 1 of 1) sorted by relevance
52 typedef struct dequeobject dequeobject; typedef134 struct dequeobject { struct136 block *leftblock;137 block *rightblock;138 Py_ssize_t leftindex; /* 0 <= leftindex < BLOCKLEN */139 Py_ssize_t rightindex; /* 0 <= rightindex < BLOCKLEN */140 size_t state; /* incremented whenever the indices move */141 Py_ssize_t maxlen; /* maxlen is -1 for unbounded deques */142 Py_ssize_t numfreeblocks;143 block *freeblocks[MAXFREEBLOCKS];[all …]