Lines Matching defs:secondnum
1150 int atomlen, int firstnum, int secondnum, int special_case)
1156 int n_q_reps = secondnum-firstnum; /* m>n, so reduce until {1,m-n} left */
1215 int atomlen, int firstnum, int secondnum)
1224 if (secondnum < 0) { /* means {n,} -> repeat n-1 times followed by PLUS */
1230 firstnum, secondnum, REPEAT_PLUS_APPENDED);
1232 } else if (firstnum == secondnum) { /* {n} or {n,n} -> simply repeat n-1 times */
1238 firstnum, secondnum, REPEAT_ZERO);
1241 firstnum, secondnum, REPEAT_SIMPLE);
1243 } else if (firstnum < secondnum) { /* {n,m} -> repeat n-1 times then alternate */
1246 firstnum, secondnum, REPEAT_WITH_Q);