Rev 1196 | Rev 1229 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1196 | Rev 1224 | ||
|---|---|---|---|
| Line 289... | Line 289... | ||
| 289 | if (!list_empty(&b->order[i])) { |
289 | if (!list_empty(&b->order[i])) { |
| 290 | for (cur = b->order[i].next; cur != &b->order[i]; cur = cur->next) |
290 | for (cur = b->order[i].next; cur != &b->order[i]; cur = cur->next) |
| 291 | cnt++; |
291 | cnt++; |
| 292 | } |
292 | } |
| 293 | 293 | ||
| 294 | printf("#%zd\t%zd\t%zdK\t\t%zdK\t\t%zd\t", i, cnt, (cnt * (1 << i) * elem_size) >> 10, ((1 << i) * elem_size) >> 10, 1 << i); |
294 | printf("#%zd\t%5zd\t%7zdK\t%8zdK\t%6zd\t", i, cnt, (cnt * (1 << i) * elem_size) >> 10, ((1 << i) * elem_size) >> 10, 1 << i); |
| 295 | if (!list_empty(&b->order[i])) { |
295 | if (!list_empty(&b->order[i])) { |
| 296 | for (cur = b->order[i].next; cur != &b->order[i]; cur = cur->next) { |
296 | for (cur = b->order[i].next; cur != &b->order[i]; cur = cur->next) { |
| 297 | b->op->print_id(b, cur); |
297 | b->op->print_id(b, cur); |
| 298 | printf(" "); |
298 | printf(" "); |
| 299 | } |
299 | } |