Lines Matching refs:code
70 PRIV(find_bracket)(PCRE2_SPTR code, BOOL utf, int number) in PRIV()
74 PCRE2_UCHAR c = *code; in PRIV()
83 if (c == OP_XCLASS) code += GET(code, 1); in PRIV()
84 else if (c == OP_CALLOUT_STR) code += GET(code, 1 + 2*LINK_SIZE); in PRIV()
90 if (number < 0) return (PCRE2_UCHAR *)code; in PRIV()
91 code += PRIV(OP_lengths)[c]; in PRIV()
99 int n = (int)GET2(code, 1+LINK_SIZE); in PRIV()
100 if (n == number) return (PCRE2_UCHAR *)code; in PRIV()
101 code += PRIV(OP_lengths)[c]; in PRIV()
122 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in PRIV()
129 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in PRIV()
130 code += 2; in PRIV()
138 code += code[1]; in PRIV()
144 code += PRIV(OP_lengths)[c]; in PRIV()
209 if (HAS_EXTRALEN(code[-1])) code += GET_EXTRALEN(code[-1]); in PRIV()