Home
last modified time | relevance | path

Searched refs:lastmark (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
D_sre.c663 ctx->lastmark = state->lastmark; \
668 state->lastmark = ctx->lastmark; \
751 #define MARK_PUSH(lastmark) \ argument
752 do if (lastmark > 0) { \
753 i = lastmark; /* ctx->lastmark may change if reallocated */ \
756 #define MARK_POP(lastmark) \ argument
757 do if (lastmark > 0) { \
758 DATA_STACK_POP(state, state->mark, (lastmark+1)*sizeof(void*), 1); \
760 #define MARK_POP_KEEP(lastmark) \ argument
761 do if (lastmark > 0) { \
[all …]
Dsre.h86 Py_ssize_t lastmark; member