• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/

Lines Matching refs:size1

68 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
69 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
357 /* True if `size1' is non-NULL and PTR is pointing anywhere inside
361 (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
384 const char *string1, int size1,
934 print_double_string (where, string1, size1, string2, size2)
938 int size1;
949 for (this_char = where - string1; this_char < size1; this_char++)
1383 DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2, \
1430 `pend', `string1', `size1', `string2', and `size2'. */
1458 DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2); \
3581 re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
3584 int size1, size2;
3593 int total_size = size1 + size2;
3653 if (startpos < size1 && startpos + range >= size1)
3654 lim = range - (size1 - startpos);
3656 d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
3673 register char c = (size1 == 0 || startpos >= size1
3674 ? string2[startpos - size1]
3687 val = re_match_2_internal (bufp, string1, size1, string2, size2,
3727 : ((regoff_t) ((ptr) - string2 + size1)))
3749 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
3854 re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
3857 int size1, size2;
3862 int result = re_match_2_internal (bufp, string1, size1, string2, size2,
3878 re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop)
3881 int size1, size2;
4046 if (pos < 0 || pos > size1 + size2)
4071 size2 = size1;
4073 size1 = 0;
4075 end1 = string1 + size1;
4079 if (stop <= size1)
4087 end_match_2 = string2 + stop - size1;
4096 if (size1 > 0 && pos <= size1)
4103 d = string2 + pos - size1;
4110 DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
4245 : ((regoff_t) (d - string2 + size1)));
4280 : string2 - size1);