Lines Matching refs:op

239   int   op;                  /* Op when no arg, or -1 if arg mandatory */  member
1751 register pcre_uchar op = *cc; in find_fixedlength() local
1753 switch (op) in find_fixedlength()
1765 d = find_fixedlength(cc + ((op == OP_CBRA)? IMM2_SIZE : 0), utf, atend, cd, in find_fixedlength()
1931 if (op == OP_XCLASS) in find_fixedlength()
6596 if (verbs[i].op == OP_ACCEPT) in compile_branch()
6621 if (verbs[i].op < 0) /* Argument is mandatory */ in compile_branch()
6626 setverb = *code++ = verbs[i].op; in compile_branch()
8608 register int op = *scode; in is_anchored() local
8612 if (op == OP_BRA || op == OP_BRAPOS || in is_anchored()
8613 op == OP_SBRA || op == OP_SBRAPOS) in is_anchored()
8620 else if (op == OP_CBRA || op == OP_CBRAPOS || in is_anchored()
8621 op == OP_SCBRA || op == OP_SCBRAPOS) in is_anchored()
8630 else if (op == OP_ASSERT || op == OP_COND) in is_anchored()
8637 else if (op == OP_ONCE || op == OP_ONCE_NC) in is_anchored()
8647 else if ((op == OP_TYPESTAR || op == OP_TYPEMINSTAR || in is_anchored()
8648 op == OP_TYPEPOSSTAR)) in is_anchored()
8657 else if (op != OP_SOD && op != OP_SOM && op != OP_CIRC) return FALSE; in is_anchored()
8698 register int op = *scode; in is_startline() local
8705 if (op == OP_COND) in is_startline()
8726 op = *scode; in is_startline()
8731 if (op == OP_BRA || op == OP_BRAPOS || in is_startline()
8732 op == OP_SBRA || op == OP_SBRAPOS) in is_startline()
8739 else if (op == OP_CBRA || op == OP_CBRAPOS || in is_startline()
8740 op == OP_SCBRA || op == OP_SCBRAPOS) in is_startline()
8749 else if (op == OP_ASSERT) in is_startline()
8756 else if (op == OP_ONCE || op == OP_ONCE_NC) in is_startline()
8767 else if (op == OP_TYPESTAR || op == OP_TYPEMINSTAR || op == OP_TYPEPOSSTAR) in is_startline()
8779 else if (op != OP_CIRC && op != OP_CIRCM) return FALSE; in is_startline()
8827 register pcre_uchar op = *scode; in find_firstassertedchar() local
8829 switch(op) in find_firstassertedchar()
8843 d = find_firstassertedchar(scode, &dflags, op == OP_ASSERT); in find_firstassertedchar()