Lines Matching refs:reqcu

5649 uint32_t firstcu, reqcu;  in compile_branch()  local
5709 firstcu = reqcu = zerofirstcu = zeroreqcu = 0; in compile_branch()
5820 *reqcuptr = reqcu; in compile_branch()
5853 zeroreqcu = reqcu; in compile_branch()
5918 zeroreqcu = reqcu; in compile_branch()
6379 zeroreqcu = reqcu; in compile_branch()
6950 zeroreqcu = reqcu; in compile_branch()
6991 reqcu = subreqcu; in compile_branch()
7010 reqcu = subreqcu; in compile_branch()
7223 reqcu = zeroreqcu; in compile_branch()
7303 reqcu = mcbuffer[0]; in compile_branch()
7569 reqcu = firstcu; in compile_branch()
8128 zeroreqcu = reqcu; in compile_branch()
8289 zeroreqcu = reqcu; in compile_branch()
8302 reqcu = code[-1]; in compile_branch()
8316 zeroreqcu = reqcu; in compile_branch()
8320 reqcu = code[-1]; in compile_branch()
8390 uint32_t firstcu, reqcu; in compile_regex() local
8413 firstcu = reqcu = 0; in compile_regex()
8515 reqcu = branchreqcu; in compile_regex()
8536 reqcu = firstcu; in compile_regex()
8556 reqcu != branchreqcu) in compile_regex()
8560 reqcu = branchreqcu; in compile_regex()
8601 *reqcuptr = reqcu; in compile_regex()
10147 uint32_t firstcu, reqcu; /* Value of first/req code unit */ in pcre2_compile() local
10591 &errorcode, 0, &firstcu, &firstcuflags, &reqcu, &reqcuflags, NULL, NULL, in pcre2_compile()
10689 &pptr, &errorcode, 0, &firstcu, &firstcuflags, &reqcu, &reqcuflags, NULL, in pcre2_compile()
10698 reqcu = 0; /* Must disable after (*ACCEPT) */ in pcre2_compile()
10886 (reqcu & 0xfc00) != 0xdc00) /* Req not low surrogate */ in pcre2_compile()
10891 (reqcu & 0x80) == 0) /* Req is ASCII */ in pcre2_compile()
10903 re->last_codeunit = reqcu; in pcre2_compile()
10910 if (reqcu < 128 || (!utf && !ucp && reqcu < 255)) in pcre2_compile()
10912 if (cb.fcc[reqcu] != reqcu) re->flags |= PCRE2_LASTCASELESS; in pcre2_compile()
10916 else if (ucp && !utf && UCD_OTHERCASE(reqcu) != reqcu) in pcre2_compile()
10919 else if ((utf || ucp) && reqcu <= MAX_UTF_CODE_POINT && in pcre2_compile()
10920 UCD_OTHERCASE(reqcu) != reqcu) in pcre2_compile()