Home | History | Annotate | Download | only in pcre

Lines Matching refs:reqByte

171 reqByte match. */
1899 static bool tryRequiredByteOptimization(const UChar*& subjectPtr, const UChar* endSubject, int reqByte, int reqByte2, bool reqByteIsCaseless, bool hasFirstByte, const UChar*& reqBytePtr)
1901 /* If reqByte is set, we know that that character must appear in the subject
1902 for the match to succeed. If the first character is set, reqByte must be
1915 if (reqByte >= 0 && endSubject - subjectPtr < REQ_BYTE_MAX) {
1925 if (pp == reqByte || pp == reqByte2) {
1932 if (*p++ == reqByte) {
2034 int reqByte = -1;
2037 reqByte = re->reqByte & 255; // FIXME: This optimization could be made to work for UTF16 chars as well...
2038 reqByteIsCaseless = (re->reqByte & REQ_IGNORE_CASE);
2039 reqByte2 = flipCase(reqByte);
2059 if (tryRequiredByteOptimization(startMatch, endSubject, reqByte, reqByte2, reqByteIsCaseless, firstByte >= 0, reqBytePtr))