Lines Matching refs:cc

1069           register pcre_uint32 cc = *(++ptr);  in check_escape()  local
1071 if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ in check_escape()
1072 c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); in check_escape()
1074 if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ in check_escape()
1075 c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); in check_escape()
1280 register pcre_uint32 cc = *ptr++; in check_escape() local
1281 if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */ in check_escape()
1285 c = (c << 3) + cc - CHAR_0 ; in check_escape()
1319 register pcre_uint32 cc = *(++ptr); in check_escape() local
1321 if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ in check_escape()
1322 c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); in check_escape()
1324 if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ in check_escape()
1325 c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); in check_escape()
1352 register pcre_uint32 cc = *ptr++; in check_escape() local
1353 if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */ in check_escape()
1360 if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ in check_escape()
1361 c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); in check_escape()
1363 if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ in check_escape()
1364 c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); in check_escape()
1402 pcre_uint32 cc; /* Some compilers don't like */ in check_escape() local
1403 cc = *(++ptr); /* ++ in initializers */ in check_escape()
1405 if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ in check_escape()
1406 c = c * 16 + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); in check_escape()
1408 if (cc <= CHAR_z) cc += 64; /* Convert to upper case */ in check_escape()
1409 c = c * 16 + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); in check_escape()
1742 register pcre_uchar *cc = code + 1 + LINK_SIZE; in find_fixedlength() local
1751 register pcre_uchar op = *cc; in find_fixedlength()
1765 d = find_fixedlength(cc + ((op == OP_CBRA)? IMM2_SIZE : 0), utf, atend, cd, in find_fixedlength()
1769 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_fixedlength()
1770 cc += 1 + LINK_SIZE; in find_fixedlength()
1786 if (*cc != OP_ALT) return length; in find_fixedlength()
1787 cc += 1 + LINK_SIZE; in find_fixedlength()
1797 cs = ce = (pcre_uchar *)cd->start_code + GET(cc, 1); /* Start subpattern */ in find_fixedlength()
1799 if (cc > cs && cc < ce) return -1; /* Recursion */ in find_fixedlength()
1811 cc += 1 + LINK_SIZE; in find_fixedlength()
1820 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_fixedlength()
1821 cc += 1 + LINK_SIZE; in find_fixedlength()
1830 cc += cc[1] + PRIV(OP_lengths)[*cc]; in find_fixedlength()
1857 cc += PRIV(OP_lengths)[*cc]; in find_fixedlength()
1867 cc += 2; in find_fixedlength()
1869 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]); in find_fixedlength()
1880 branchlength += (int)GET2(cc,1); in find_fixedlength()
1881 cc += 2 + IMM2_SIZE; in find_fixedlength()
1883 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]); in find_fixedlength()
1888 branchlength += GET2(cc,1); in find_fixedlength()
1889 if (cc[1 + IMM2_SIZE] == OP_PROP || cc[1 + IMM2_SIZE] == OP_NOTPROP) in find_fixedlength()
1890 cc += 2; in find_fixedlength()
1891 cc += 1 + IMM2_SIZE + 1; in find_fixedlength()
1898 cc += 2; in find_fixedlength()
1914 cc++; in find_fixedlength()
1932 cc += GET(cc, 1); in find_fixedlength()
1934 cc += PRIV(OP_lengths)[OP_CLASS]; in find_fixedlength()
1936 cc += PRIV(OP_lengths)[OP_CLASS]; in find_fixedlength()
1939 switch (*cc) in find_fixedlength()
1955 if (GET2(cc,1) != GET2(cc,1+IMM2_SIZE)) return -1; in find_fixedlength()
1956 branchlength += (int)GET2(cc,1); in find_fixedlength()
1957 cc += 1 + 2 * IMM2_SIZE; in find_fixedlength()
9522 pcre_uchar *cc = (pcre_uchar *)codestart; in pcre_compile2() local
9529 for (cc = (pcre_uchar *)PRIV(find_bracket)(codestart, utf, -1); in pcre_compile2()
9530 cc != NULL; in pcre_compile2()
9531 cc = (pcre_uchar *)PRIV(find_bracket)(cc, utf, -1)) in pcre_compile2()
9533 if (GET(cc, 1) == 0) in pcre_compile2()
9536 pcre_uchar *be = cc - 1 - LINK_SIZE + GET(cc, -LINK_SIZE); in pcre_compile2()
9539 fixed_length = find_fixedlength(cc, (re->options & PCRE_UTF8) != 0, TRUE, in pcre_compile2()
9550 PUT(cc, 1, fixed_length); in pcre_compile2()
9552 cc += 1 + LINK_SIZE; in pcre_compile2()