Lines Matching defs:last
199 struct cil_cat *first = NULL, *last = NULL, *cat;
206 } else if (last == NULL) {
208 last = cat;
214 } else if (cat->value == last->value + 1) {
215 last = cat;
219 if (last->value >= first->value + 1) {
224 fprintf(out, "%s", DATUM(last)->fqn);
226 last = NULL;
231 if (last != NULL) {
232 if (last->value >= first->value + 1) {
237 fprintf(out, "%s", DATUM(last)->fqn);
1109 unsigned int i, first = 0, last = 0;
1127 last = i;
1133 } else if (i == last+1) {
1134 last = i;
1136 if (last > first+1) {
1137 fprintf(out, " 0x%x-0x%x", first, last);
1139 fprintf(out, " 0x%x 0x%x", first, last);
1147 fprintf(out, " 0x%x-0x%x", first, last);