Lines Matching refs:re
109 REAL_PCRE *re = (REAL_PCRE *)argument_re; in pcre_pattern_to_host_byte_order() local
120 if (re == NULL) return PCRE_ERROR_NULL; in pcre_pattern_to_host_byte_order()
121 if (re->magic_number == MAGIC_NUMBER) in pcre_pattern_to_host_byte_order()
123 if ((re->flags & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE; in pcre_pattern_to_host_byte_order()
124 re->tables = tables; in pcre_pattern_to_host_byte_order()
128 if (re->magic_number != REVERSED_MAGIC_NUMBER) return PCRE_ERROR_BADMAGIC; in pcre_pattern_to_host_byte_order()
129 if ((swap_uint32(re->flags) & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE; in pcre_pattern_to_host_byte_order()
131 re->magic_number = MAGIC_NUMBER; in pcre_pattern_to_host_byte_order()
132 re->size = swap_uint32(re->size); in pcre_pattern_to_host_byte_order()
133 re->options = swap_uint32(re->options); in pcre_pattern_to_host_byte_order()
134 re->flags = swap_uint32(re->flags); in pcre_pattern_to_host_byte_order()
135 re->limit_match = swap_uint32(re->limit_match); in pcre_pattern_to_host_byte_order()
136 re->limit_recursion = swap_uint32(re->limit_recursion); in pcre_pattern_to_host_byte_order()
139 re->first_char = swap_uint16(re->first_char); in pcre_pattern_to_host_byte_order()
140 re->req_char = swap_uint16(re->req_char); in pcre_pattern_to_host_byte_order()
142 re->first_char = swap_uint32(re->first_char); in pcre_pattern_to_host_byte_order()
143 re->req_char = swap_uint32(re->req_char); in pcre_pattern_to_host_byte_order()
146 re->max_lookbehind = swap_uint16(re->max_lookbehind); in pcre_pattern_to_host_byte_order()
147 re->top_bracket = swap_uint16(re->top_bracket); in pcre_pattern_to_host_byte_order()
148 re->top_backref = swap_uint16(re->top_backref); in pcre_pattern_to_host_byte_order()
149 re->name_table_offset = swap_uint16(re->name_table_offset); in pcre_pattern_to_host_byte_order()
150 re->name_entry_size = swap_uint16(re->name_entry_size); in pcre_pattern_to_host_byte_order()
151 re->name_count = swap_uint16(re->name_count); in pcre_pattern_to_host_byte_order()
152 re->ref_count = swap_uint16(re->ref_count); in pcre_pattern_to_host_byte_order()
153 re->tables = tables; in pcre_pattern_to_host_byte_order()
164 ptr = (pcre_uchar *)re + re->name_table_offset; in pcre_pattern_to_host_byte_order()
165 length = re->name_count * re->name_entry_size; in pcre_pattern_to_host_byte_order()
167 utf = (re->options & PCRE_UTF16) != 0; in pcre_pattern_to_host_byte_order()