Lines Matching refs:PRIV

44 depending on the PRIV macro. */
315 PRIV(is_newline)((p), NLBLOCK->nltype, NLBLOCK->PSEND, \
329 PRIV(was_newline)((p), NLBLOCK->nltype, NLBLOCK->PSSTART, \
688 from the tables whose names start with PRIV(utf8_table). They were rewritten by
703 #define GET_EXTRALEN(c) (PRIV(utf8_table4)[(c) & 0x3f])
2606 #ifndef PRIV
2607 #define PRIV(name) _pcre_##name
2613 #ifndef PRIV
2614 #define PRIV(name) _pcre16_##name
2620 #ifndef PRIV
2621 #define PRIV(name) _pcre32_##name
2645 extern const int PRIV(utf8_table1)[];
2646 extern const int PRIV(utf8_table1_size);
2647 extern const int PRIV(utf8_table2)[];
2648 extern const int PRIV(utf8_table3)[];
2649 extern const pcre_uint8 PRIV(utf8_table4)[];
2652 extern const char PRIV(utt_names)[];
2653 extern const ucp_type_table PRIV(utt)[];
2654 extern const int PRIV(utt_size);
2656 extern const pcre_uint8 PRIV(OP_lengths)[];
2657 extern const pcre_uint8 PRIV(default_tables)[];
2659 extern const pcre_uint32 PRIV(hspace_list)[];
2660 extern const pcre_uint32 PRIV(vspace_list)[];
2682 extern int PRIV(strcmp_uc_uc)(const pcre_uchar *,
2684 extern int PRIV(strcmp_uc_c8)(const pcre_uchar *,
2686 extern int PRIV(strncmp_uc_uc)(const pcre_uchar *,
2688 extern int PRIV(strncmp_uc_c8)(const pcre_uchar *,
2690 extern unsigned int PRIV(strlen_uc)(const pcre_uchar *str);
2693 PRIV(strcmp_uc_uc)((str1), (str2))
2695 PRIV(strcmp_uc_c8)((str1), (str2))
2697 PRIV(strncmp_uc_uc)((str1), (str2), (num))
2699 PRIV(strncmp_uc_c8)((str1), (str2), (num))
2700 #define STRLEN_UC(str) PRIV(strlen_uc)(str)
2711 extern int PRIV(strcmp_uc_uc_utf)(const pcre_uchar *,
2713 extern int PRIV(strcmp_uc_c8_utf)(const pcre_uchar *,
2717 (utf ? PRIV(strcmp_uc_uc_utf)((str1), (str2)) : PRIV(strcmp_uc_uc)((str1), (str2)))
2719 (utf ? PRIV(strcmp_uc_c8_utf)((str1), (str2)) : PRIV(strcmp_uc_c8)((str1), (str2)))
2723 extern const pcre_uchar *PRIV(find_bracket)(const pcre_uchar *, BOOL, int);
2724 extern BOOL PRIV(is_newline)(PCRE_PUCHAR, int, PCRE_PUCHAR,
2726 extern unsigned int PRIV(ord2utf)(pcre_uint32, pcre_uchar *);
2727 extern int PRIV(valid_utf)(PCRE_PUCHAR, int, int *);
2728 extern BOOL PRIV(was_newline)(PCRE_PUCHAR, int, PCRE_PUCHAR,
2730 extern BOOL PRIV(xclass)(pcre_uint32, const pcre_uchar *, BOOL);
2733 extern void PRIV(jit_compile)(const REAL_PCRE *,
2735 extern int PRIV(jit_exec)(const PUBL(extra) *,
2737 extern void PRIV(jit_free)(void *);
2738 extern int PRIV(jit_get_size)(void *);
2739 extern const char* PRIV(jit_get_target)(void);
2752 extern const pcre_uint32 PRIV(ucd_caseless_sets)[];
2753 extern const ucd_record PRIV(ucd_records)[];
2754 extern const pcre_uint8 PRIV(ucd_stage1)[];
2755 extern const pcre_uint16 PRIV(ucd_stage2)[];
2756 extern const pcre_uint32 PRIV(ucp_gentype)[];
2757 extern const pcre_uint32 PRIV(ucp_gbtable)[];
2759 extern const int PRIV(ucp_typerange)[];
2766 #define GET_UCD(ch) (PRIV(ucd_records) + \
2767 PRIV(ucd_stage2)[PRIV(ucd_stage1)[(int)(ch) / UCD_BLOCK_SIZE] * \
2772 #define UCD_CATEGORY(ch) PRIV(ucp_gentype)[UCD_CHARTYPE(ch)]