Lines Matching refs:op

226   int   op;                  /* Op when no arg, or -1 if arg mandatory */  member
1753 register pcre_uchar op = *cc; in find_fixedlength() local
1755 switch (op) in find_fixedlength()
1767 d = find_fixedlength(cc + ((op == OP_CBRA)? IMM2_SIZE : 0), utf, atend, cd); in find_fixedlength()
1924 if (op == OP_XCLASS) in find_fixedlength()
5641 if (verbs[i].op == OP_ACCEPT) in compile_branch()
5666 if (verbs[i].op < 0) /* Argument is mandatory */ in compile_branch()
5671 setverb = *code++ = verbs[i].op; in compile_branch()
7439 register int op = *scode; in is_anchored() local
7443 if (op == OP_BRA || op == OP_BRAPOS || in is_anchored()
7444 op == OP_SBRA || op == OP_SBRAPOS) in is_anchored()
7451 else if (op == OP_CBRA || op == OP_CBRAPOS || in is_anchored()
7452 op == OP_SCBRA || op == OP_SCBRAPOS) in is_anchored()
7461 else if (op == OP_ASSERT || op == OP_COND) in is_anchored()
7468 else if (op == OP_ONCE || op == OP_ONCE_NC) in is_anchored()
7478 else if ((op == OP_TYPESTAR || op == OP_TYPEMINSTAR || in is_anchored()
7479 op == OP_TYPEPOSSTAR)) in is_anchored()
7488 else if (op != OP_SOD && op != OP_SOM && op != OP_CIRC) return FALSE; in is_anchored()
7529 register int op = *scode; in is_startline() local
7536 if (op == OP_COND) in is_startline()
7556 op = *scode; in is_startline()
7561 if (op == OP_BRA || op == OP_BRAPOS || in is_startline()
7562 op == OP_SBRA || op == OP_SBRAPOS) in is_startline()
7569 else if (op == OP_CBRA || op == OP_CBRAPOS || in is_startline()
7570 op == OP_SCBRA || op == OP_SCBRAPOS) in is_startline()
7579 else if (op == OP_ASSERT) in is_startline()
7586 else if (op == OP_ONCE || op == OP_ONCE_NC) in is_startline()
7597 else if (op == OP_TYPESTAR || op == OP_TYPEMINSTAR || op == OP_TYPEPOSSTAR) in is_startline()
7609 else if (op != OP_CIRC && op != OP_CIRCM) return FALSE; in is_startline()
7656 register pcre_uchar op = *scode; in find_firstassertedchar() local
7658 switch(op) in find_firstassertedchar()
7673 d = find_firstassertedchar(scode, &dflags, op == OP_ASSERT); in find_firstassertedchar()