Lines Matching defs:shuffle

347 struct shuffle
350 struct shuffle *next;
378 /* Linked lists describing how to shuffle the input debug
381 struct shuffle *line;
382 struct shuffle *line_end;
383 struct shuffle *pdr;
384 struct shuffle *pdr_end;
385 struct shuffle *sym;
386 struct shuffle *sym_end;
387 struct shuffle *opt;
388 struct shuffle *opt_end;
389 struct shuffle *aux;
390 struct shuffle *aux_end;
391 struct shuffle *ss;
392 struct shuffle *ss_end;
395 struct shuffle *fdr;
396 struct shuffle *fdr_end;
397 struct shuffle *rfd;
398 struct shuffle *rfd_end;
399 /* The size of the largest file shuffle. */
405 /* Add a file entry to a shuffle list. */
408 PARAMS ((struct accumulate *, struct shuffle **, struct shuffle **,
414 struct shuffle **head;
415 struct shuffle **tail;
420 struct shuffle *n;
422 if (*tail != (struct shuffle *) NULL
434 n = (struct shuffle *) objalloc_alloc (ainfo->memory,
435 sizeof (struct shuffle));
446 if (*head == (struct shuffle *) NULL)
448 if (*tail != (struct shuffle *) NULL)
456 /* Add a memory entry to a shuffle list. */
459 PARAMS ((struct accumulate *, struct shuffle **head, struct shuffle **tail,
465 struct shuffle **head;
466 struct shuffle **tail;
470 struct shuffle *n;
472 n = (struct shuffle *) objalloc_alloc (ainfo->memory,
473 sizeof (struct shuffle));
483 if (*head == (struct shuffle *) NULL)
485 if (*tail != (struct shuffle *) NULL)
1242 probably be changed to use a shuffle structure. The assembler uses
1567 /* Write out a shuffle list. */
1570 PARAMS ((bfd *, const struct ecoff_debug_swap *, struct shuffle *,
1574 ecoff_write_shuffle (abfd, swap, shuffle, space)
1577 struct shuffle *shuffle;
1580 register struct shuffle *l;
1584 for (l = shuffle; l != (struct shuffle *) NULL; l = l->next)
1669 BFD_ASSERT (ainfo->ss == (struct shuffle *) NULL);
2462 FIXME: The whole point of the shuffle code is to avoid storing
2468 /* Collect a shuffle into a memory buffer. */
2471 PARAMS ((struct shuffle *, bfd_byte *));
2475 struct shuffle *l;
2481 for (; l != (struct shuffle *) NULL; l = l->next)
2536 BFD_ASSERT (ainfo->ss == (struct shuffle *) NULL);