Lines Matching refs:reqcu

5650 uint32_t firstcu, reqcu;  in compile_branch()  local
5710 firstcu = reqcu = zerofirstcu = zeroreqcu = 0; in compile_branch()
5821 *reqcuptr = reqcu; in compile_branch()
5854 zeroreqcu = reqcu; in compile_branch()
5919 zeroreqcu = reqcu; in compile_branch()
6380 zeroreqcu = reqcu; in compile_branch()
6951 zeroreqcu = reqcu; in compile_branch()
6992 reqcu = subreqcu; in compile_branch()
7011 reqcu = subreqcu; in compile_branch()
7224 reqcu = zeroreqcu; in compile_branch()
7304 reqcu = mcbuffer[0]; in compile_branch()
7571 reqcu = firstcu; in compile_branch()
8130 zeroreqcu = reqcu; in compile_branch()
8291 zeroreqcu = reqcu; in compile_branch()
8304 reqcu = code[-1]; in compile_branch()
8318 zeroreqcu = reqcu; in compile_branch()
8322 reqcu = code[-1]; in compile_branch()
8392 uint32_t firstcu, reqcu; in compile_regex() local
8415 firstcu = reqcu = 0; in compile_regex()
8517 reqcu = branchreqcu; in compile_regex()
8538 reqcu = firstcu; in compile_regex()
8558 reqcu != branchreqcu) in compile_regex()
8562 reqcu = branchreqcu; in compile_regex()
8603 *reqcuptr = reqcu; in compile_regex()
10149 uint32_t firstcu, reqcu; /* Value of first/req code unit */ in pcre2_compile() local
10593 &errorcode, 0, &firstcu, &firstcuflags, &reqcu, &reqcuflags, NULL, NULL, in pcre2_compile()
10698 &pptr, &errorcode, 0, &firstcu, &firstcuflags, &reqcu, &reqcuflags, NULL, in pcre2_compile()
10707 reqcu = 0; /* Must disable after (*ACCEPT) */ in pcre2_compile()
10895 (reqcu & 0xfc00) != 0xdc00) /* Req not low surrogate */ in pcre2_compile()
10900 (reqcu & 0x80) == 0) /* Req is ASCII */ in pcre2_compile()
10912 re->last_codeunit = reqcu; in pcre2_compile()
10919 if (reqcu < 128 || (!utf && !ucp && reqcu < 255)) in pcre2_compile()
10921 if (cb.fcc[reqcu] != reqcu) re->flags |= PCRE2_LASTCASELESS; in pcre2_compile()
10925 else if (ucp && !utf && UCD_OTHERCASE(reqcu) != reqcu) in pcre2_compile()
10928 else if ((utf || ucp) && reqcu <= MAX_UTF_CODE_POINT && in pcre2_compile()
10929 UCD_OTHERCASE(reqcu) != reqcu) in pcre2_compile()