Lines Matching defs:compile_block
686 typedef struct compile_block { struct
687 pcre2_real_compile_context *cx; /* Points to the compile context */
688 const uint8_t *lcc; /* Points to lower casing table */
689 const uint8_t *fcc; /* Points to case-flipping table */
690 const uint8_t *cbits; /* Points to character type table */
691 const uint8_t *ctypes; /* Points to table of type maps */
692 PCRE2_SPTR start_workspace; /* The start of working space */
693 PCRE2_SPTR start_code; /* The start of the compiled code */
694 PCRE2_SPTR start_pattern; /* The start of the pattern */
695 PCRE2_SPTR end_pattern; /* The end of the pattern */
696 PCRE2_SPTR nestptr[2]; /* Pointer(s) saved for string substitution */
697 PCRE2_UCHAR *name_table; /* The name/number table */
698 size_t workspace_size; /* Size of workspace */
699 uint16_t names_found; /* Number of entries so far */
700 uint16_t name_entry_size; /* Size of each entry */
724 } compile_block; argument