Lines Matching defs:compile_data
2425 typedef struct compile_data { struct
2426 const pcre_uint8 *lcc; /* Points to lower casing table */
2427 const pcre_uint8 *fcc; /* Points to case-flipping table */
2428 const pcre_uint8 *cbits; /* Points to character type table */
2429 const pcre_uint8 *ctypes; /* Points to table of type maps */
2430 const pcre_uchar *start_workspace;/* The start of working space */
2431 const pcre_uchar *start_code; /* The start of the compiled code */
2432 const pcre_uchar *start_pattern; /* The start of the pattern */
2433 const pcre_uchar *end_pattern; /* The end of the pattern */
2434 pcre_uchar *hwm; /* High watermark of workspace */
2435 open_capitem *open_caps; /* Chain of open capture items */
2436 named_group *named_groups; /* Points to vector in pre-compile */
2437 pcre_uchar *name_table; /* The name/number table */
2438 int names_found; /* Number of entries so far */
2462 } compile_data; argument