Searched defs:reganch (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dregexp.h48 U32 reganch; /* Internal use only + member in struct:regexp
69 /* 0xf800 of reganch is used by PMf_COMPILETIME */
90 #define RX_MATCH_TAINTED(prog) ((prog)->reganch & ROPT_TAINTED_SEEN)
91 #define RX_MATCH_TAINTED_on(prog) ((prog)->reganch |= ROPT_TAINTED_SEEN)
92 #define RX_MATCH_TAINTED_off(prog) ((prog)->reganch &= ~ROPT_TAINTED_SEEN)
97 #define RX_MATCH_COPIED(prog) ((prog)->reganch & ROPT_COPY_DONE)
98 #define RX_MATCH_COPIED_on(prog) ((prog)->reganch |= ROPT_COPY_DONE)
99 #define RX_MATCH_COPIED_off(prog) ((prog)->reganch &= ~ROPT_COPY_DONE)
104 #define RX_MATCH_UTF8(prog) ((prog)->reganch & ROPT_MATCH_UTF8)
105 #define RX_MATCH_UTF8_on(prog) ((prog)->reganch |
[all...]
H A Dsv.c3025 U16 reganch = (U16)((re->reganch & PMf_COMPILETIME) >> 12); local
3028 if(reganch & 1) {
3034 reganch >>= 1;
3057 if (PMf_EXTENDED & re->reganch)
3087 if (re->reganch & ROPT_UTF8)
9442 ret->reganch = r->reganch;

Completed in 44 milliseconds