• Home
  • Raw
  • Download

Lines Matching refs:SRE_CHAR

289 #define SRE_CHAR unsigned char  macro
313 #undef SRE_CHAR
317 #define SRE_CHAR Py_UNICODE macro
337 SRE_AT(SRE_STATE* state, SRE_CHAR* ptr, SRE_CODE at) in SRE_AT()
354 return (((SRE_CHAR *)state->end - ptr == 1 && in SRE_AT()
522 SRE_CHAR* ptr = (SRE_CHAR *)state->ptr; in SRE_COUNT()
523 SRE_CHAR* end = (SRE_CHAR *)state->end; in SRE_COUNT()
588 while ((SRE_CHAR*) state->ptr < end) { in SRE_COUNT()
596 (SRE_CHAR*) state->ptr - ptr)); in SRE_COUNT()
597 return (SRE_CHAR*) state->ptr - ptr; in SRE_COUNT()
601 ptr - (SRE_CHAR*) state->ptr)); in SRE_COUNT()
602 return ptr - (SRE_CHAR*) state->ptr; in SRE_COUNT()
613 SRE_CHAR* end = state->end;
614 SRE_CHAR* ptr = state->ptr;
798 SRE_CHAR* ptr;
814 SRE_CHAR* end = (SRE_CHAR *)state->end; in SRE_MATCH()
833 ctx->ptr = (SRE_CHAR *)state->ptr; in SRE_MATCH()
1341 SRE_CHAR* p = (SRE_CHAR*) state->mark[groupref]; in SRE_MATCH()
1342 SRE_CHAR* e = (SRE_CHAR*) state->mark[groupref+1]; in SRE_MATCH()
1365 SRE_CHAR* p = (SRE_CHAR*) state->mark[groupref]; in SRE_MATCH()
1366 SRE_CHAR* e = (SRE_CHAR*) state->mark[groupref+1]; in SRE_MATCH()
1391 SRE_CHAR* p = (SRE_CHAR*) state->mark[groupref]; in SRE_MATCH()
1392 SRE_CHAR* e = (SRE_CHAR*) state->mark[groupref+1]; in SRE_MATCH()
1407 if (ctx->ptr - (SRE_CHAR *)state->beginning < (Py_ssize_t)ctx->pattern[1]) in SRE_MATCH()
1420 if (ctx->ptr - (SRE_CHAR *)state->beginning >= (Py_ssize_t)ctx->pattern[1]) { in SRE_MATCH()
1503 SRE_CHAR* ptr = (SRE_CHAR *)state->start; in SRE_SEARCH()
1504 SRE_CHAR* end = (SRE_CHAR *)state->end; in SRE_SEARCH()
1559 end = (SRE_CHAR *)state->end; in SRE_SEARCH()
1594 end = (SRE_CHAR *)state->end; in SRE_SEARCH()
1611 end = (SRE_CHAR *)state->end; in SRE_SEARCH()
1642 SRE_LITERAL_TEMPLATE(SRE_CHAR* ptr, Py_ssize_t len) in SRE_LITERAL_TEMPLATE()