Home | History | Annotate | Download | only in gcc

Lines Matching refs:allof

597     struct allof_regexp allof;
1023 &(_regexp)->regexp.allof; }))
1092 #define REGEXP_ALLOF(r) (&(r)->regexp.allof)
1624 regexp_t allof;
1634 allof = XCREATENODEVAR (struct regexp, sizeof (struct regexp)
1636 allof->mode = rm_allof;
1637 REGEXP_ALLOF (allof)->regexps_num = els_num;
1639 REGEXP_ALLOF (allof)->regexps [i] = gen_regexp_repeat (allof_vect [i]);
1640 return allof;
4652 regexp_t allof = NULL;
4661 allof = REGEXP_ALLOF (regexp)->regexps [i];
4666 gcc_assert (REGEXP_ALLOF (allof)->regexps_num > 1
4671 + REGEXP_ALLOF (allof)->regexps_num - 2));
4676 + REGEXP_ALLOF (allof)->regexps_num - 1);
4683 [i + REGEXP_ALLOF (allof)->regexps_num - 1]
4686 for (j = 0; j < REGEXP_ALLOF (allof)->regexps_num; j++)
4688 = copy_insn_regexp (REGEXP_ALLOF (allof)->regexps [j]);
4803 regexp_t allof = NULL;
4827 allof
4831 allof->mode = rm_allof;
4832 allof->pos = regexp->pos;
4833 REGEXP_ALLOF (allof)->regexps_num
4835 REGEXP_ONEOF (result)->regexps [i] = allof;
4836 for (j = 0; j < REGEXP_ALLOF (allof)->regexps_num; j++)
4838 REGEXP_ALLOF (allof)->regexps [j]
4841 REGEXP_ALLOF (allof)->regexps [j]
4911 allof = XCREATENODEVAR (struct regexp, sizeof (struct regexp)
4914 allof->mode = rm_allof;
4915 allof->pos = regexp->pos;
4916 REGEXP_ALLOF (allof)->regexps_num = allof_length;
4917 REGEXP_SEQUENCE (result)->regexps [i] = allof;
4928 REGEXP_ALLOF (allof)->regexps [allof_length]
4939 REGEXP_ALLOF (allof)->regexps [allof_length]
5173 regexp_t seq, allof, unit;
5190 allof = REGEXP_SEQUENCE (seq)->regexps [j];
5191 switch (allof->mode)
5194 for (k = 0; k < REGEXP_ALLOF (allof)->regexps_num; k++)
5196 unit = REGEXP_ALLOF (allof)->regexps [k];
5205 store_alt_unit_usage (regexp, allof, j, i);