Lines Matching defs:secondnum
1148 int atomlen, int firstnum, int secondnum, int special_case)
1154 int n_q_reps = secondnum-firstnum; /* m>n, so reduce until {1,m-n} left */
1213 int atomlen, int firstnum, int secondnum)
1222 if (secondnum < 0) { /* means {n,} -> repeat n-1 times followed by PLUS */
1228 firstnum, secondnum, REPEAT_PLUS_APPENDED);
1230 } else if (firstnum == secondnum) { /* {n} or {n,n} -> simply repeat n-1 times */
1236 firstnum, secondnum, REPEAT_ZERO);
1239 firstnum, secondnum, REPEAT_SIMPLE);
1241 } else if (firstnum < secondnum) { /* {n,m} -> repeat n-1 times then alternate */
1244 firstnum, secondnum, REPEAT_WITH_Q);