Home | History | Annotate | Download | only in src

Lines Matching refs:META_END

200 unsigned ints. Values less than META_END are literal data values. The coding
208 #define META_END 0x80000000u /* End of pattern */
214 #define META_BIGVALUE 0x80050000u /* Next is a literal > META_END */
291 0, /* META_END */
863 if (*pptr < META_END)
875 case META_END:
876 fprintf(stderr, "META_END\n");
2307 /* Only in 32-bit mode can there be literals > META_END. A macros encapsulates
2313 if (c >= META_END) *p++ = META_BIGVALUE; \
4334 *parsed_pattern = META_END;
5087 case META_END:
5174 if (pptr[1] < META_END && pptr[2] == META_CLASS_END)
5378 if (meta >= META_END)
7205 /* Handle a 32-bit data character with a value greater than META_END. */
7374 META_END is a literal. Otherwise we have a problem. */
7377 if (meta >= META_END)
7387 32-bit, non-UTF character whose value is greater than META_END. */
7492 the closing bracket or META_END. The code variable is pointing at the code unit
8369 NULL if META_END is reached - should never occur
8385 if (meta < META_END) continue; /* Literal */
8390 case META_END:
8585 if (*pptr < META_END)
8796 for (gptr = cb->parsed_pattern; *gptr != META_END; gptr++)
8987 for (pptr = cb->parsed_pattern; *pptr != META_END; pptr++)
8989 if (*pptr < META_END) continue; /* Literal */
9462 characters greater than META_END (0x80000000) have to be coded as two units. In
9469 for (p = ptr; p < cb.end_pattern; p++) if (*p >= META_END) big32count++;