Lines Matching refs:firstcu

5401 uint32_t firstcu, reqcu;  in compile_branch()  local
5461 firstcu = reqcu = zerofirstcu = zeroreqcu = 0; in compile_branch()
5570 *firstcuptr = firstcu; in compile_branch()
5603 zerofirstcu = firstcu; in compile_branch()
5622 zerofirstcu = firstcu; in compile_branch()
5673 zerofirstcu = firstcu; in compile_branch()
6115 zerofirstcu = firstcu; in compile_branch()
6687 zerofirstcu = firstcu; in compile_branch()
6703 firstcu = subfirstcu; in compile_branch()
6956 firstcu = zerofirstcu; in compile_branch()
7310 reqcu = firstcu; in compile_branch()
7826 zerofirstcu = firstcu; in compile_branch()
7869 zerofirstcu = firstcu; in compile_branch()
8020 firstcu = mcbuffer[0]; in compile_branch()
8036 zerofirstcu = firstcu; in compile_branch()
8110 uint32_t firstcu, reqcu; in compile_regex() local
8132 firstcu = reqcu = 0; in compile_regex()
8214 firstcu = branchfirstcu; in compile_regex()
8231 if (firstcuflags != branchfirstcuflags || firstcu != branchfirstcu) in compile_regex()
8237 reqcu = firstcu; in compile_regex()
8304 *firstcuptr = firstcu; in compile_regex()
9787 uint32_t firstcu, reqcu; /* Value of first/req code unit */ in pcre2_compile() local
10230 (void)compile_regex(cb.external_options, &code, &pptr, &errorcode, 0, &firstcu, in pcre2_compile()
10329 &firstcu, &firstcuflags, &reqcu, &reqcuflags, NULL, &cb, NULL); in pcre2_compile()
10467 firstcu = find_firstassertedcu(codestart, &firstcuflags, 0); in pcre2_compile()
10474 re->first_codeunit = firstcu; in pcre2_compile()
10482 if (firstcu < 128 || (!utf && !ucp && firstcu < 255)) in pcre2_compile()
10484 if (cb.fcc[firstcu] != firstcu) re->flags |= PCRE2_FIRSTCASELESS; in pcre2_compile()
10493 else if (ucp && !utf && UCD_OTHERCASE(firstcu) != firstcu) in pcre2_compile()
10496 else if ((utf || ucp) && firstcu <= MAX_UTF_CODE_POINT && in pcre2_compile()
10497 UCD_OTHERCASE(firstcu) != firstcu) in pcre2_compile()
10524 (firstcu & 0xf800) != 0xd800 || /* First not surrogate */ in pcre2_compile()
10529 (firstcu & 0x80) == 0 || /* First is ASCII */ in pcre2_compile()