Lines Matching refs:allof

1006     struct allof_regexp allof;
1440 &(_regexp)->regexp.allof; }))
1509 #define REGEXP_ALLOF(r) (&(r)->regexp.allof)
2025 regexp_t allof;
2035 allof = create_node (sizeof (struct regexp)
2037 allof->mode = rm_allof;
2038 REGEXP_ALLOF (allof)->regexps_num = els_num;
2040 REGEXP_ALLOF (allof)->regexps [i] = gen_regexp_repeat (allof_vect [i]);
2041 return allof;
4961 regexp_t allof = NULL;
4970 allof = REGEXP_ALLOF (regexp)->regexps [i];
4975 gcc_assert (REGEXP_ALLOF (allof)->regexps_num > 1
4980 + REGEXP_ALLOF (allof)->regexps_num - 2));
4985 + REGEXP_ALLOF (allof)->regexps_num - 1);
4992 [i + REGEXP_ALLOF (allof)->regexps_num - 1]
4995 for (j = 0; j < REGEXP_ALLOF (allof)->regexps_num; j++)
4997 = copy_insn_regexp (REGEXP_ALLOF (allof)->regexps [j]);
5112 regexp_t allof = NULL;
5136 allof
5140 allof->mode = rm_allof;
5141 allof->pos = regexp->pos;
5142 REGEXP_ALLOF (allof)->regexps_num
5144 REGEXP_ONEOF (result)->regexps [i] = allof;
5145 for (j = 0; j < REGEXP_ALLOF (allof)->regexps_num; j++)
5147 REGEXP_ALLOF (allof)->regexps [j]
5150 REGEXP_ALLOF (allof)->regexps [j]
5220 allof = create_node (sizeof (struct regexp)
5223 allof->mode = rm_allof;
5224 allof->pos = regexp->pos;
5225 REGEXP_ALLOF (allof)->regexps_num = allof_length;
5226 REGEXP_SEQUENCE (result)->regexps [i] = allof;
5237 REGEXP_ALLOF (allof)->regexps [allof_length]
5248 REGEXP_ALLOF (allof)->regexps [allof_length]
5412 regexp_t seq, allof, unit;
5428 allof = REGEXP_SEQUENCE (seq)->regexps [j];
5429 switch (allof->mode)
5432 for (k = 0; k < REGEXP_ALLOF (allof)->regexps_num; k++)
5434 unit = REGEXP_ALLOF (allof)->regexps [k];
5443 store_alt_unit_usage (regexp, allof, j, i);