Lines Matching defs:size2

73 #  define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
74 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
417 const char *string2, int size2,
423 const char *string2, int size2,
441 wchar_t *string2, int size2,
445 const char *string2, int size2,
1179 int size1, const CHAR_T *string2, int size2)
1198 for (this_char = where - string2; this_char < size2; this_char++)
1671 size2); \
1719 `pend', `string1', `size1', `string2', and `size2'. */
1746 DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2); \
4966 const char *string2, int size2, int startpos, int range,
4971 return wcs_re_search_2 (bufp, string1, size1, string2, size2, startpos,
4975 return byte_re_search_2 (bufp, string1, size1, string2, size2, startpos,
5007 if (size2 > MAX_ALLOCA_SIZE) \
5024 int size1, const char *string2, int size2,
5031 int total_size = size1 + size2;
5127 if (size2 != 0)
5129 if (size2 > MAX_ALLOCA_SIZE)
5131 wcs_string2 = TALLOC (size2 + 1, CHAR_T);
5132 mbs_offset2 = TALLOC (size2 + 1, int);
5133 is_binary = TALLOC (size2 + 1, char);
5137 wcs_string2 = REGEX_TALLOC (size2 + 1, CHAR_T);
5138 mbs_offset2 = REGEX_TALLOC (size2 + 1, int);
5139 is_binary = REGEX_TALLOC (size2 + 1, char);
5144 if (size2 > MAX_ALLOCA_SIZE)
5150 wcs_size2 = convert_mbs_to_wcs(wcs_string2, string2, size2,
5153 if (size2 > MAX_ALLOCA_SIZE)
5217 size2, startpos, regs, stop,
5223 size2, startpos, regs, stop);
5306 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
5466 const char *string2, int size2, int pos,
5472 result = wcs_re_match_2_internal (bufp, string1, size1, string2, size2,
5477 result = byte_re_match_2_internal (bufp, string1, size1, string2, size2,
5555 wchar_t *string2, int size2,
5562 const char *string2, int size2,
5741 if (pos < 0 || pos > size1 + size2)
5785 size2 = convert_mbs_to_wcs(string2, cstring2, csize2,
5787 string2[size2] = L'\0'; /* for a sentinel */
5815 if (size2 == 0 && string1 != NULL)
5818 size2 = size1;
5829 end2 = string2 + size2;
5906 DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);