Lines Matching defs:shuffle

348 struct shuffle
351 struct shuffle *next;
379 /* Linked lists describing how to shuffle the input debug
382 struct shuffle *line;
383 struct shuffle *line_end;
384 struct shuffle *pdr;
385 struct shuffle *pdr_end;
386 struct shuffle *sym;
387 struct shuffle *sym_end;
388 struct shuffle *opt;
389 struct shuffle *opt_end;
390 struct shuffle *aux;
391 struct shuffle *aux_end;
392 struct shuffle *ss;
393 struct shuffle *ss_end;
396 struct shuffle *fdr;
397 struct shuffle *fdr_end;
398 struct shuffle *rfd;
399 struct shuffle *rfd_end;
400 /* The size of the largest file shuffle. */
406 /* Add a file entry to a shuffle list. */
409 PARAMS ((struct accumulate *, struct shuffle **, struct shuffle **,
415 struct shuffle **head;
416 struct shuffle **tail;
421 struct shuffle *n;
423 if (*tail != (struct shuffle *) NULL
435 n = (struct shuffle *) objalloc_alloc (ainfo->memory,
436 sizeof (struct shuffle));
447 if (*head == (struct shuffle *) NULL)
449 if (*tail != (struct shuffle *) NULL)
457 /* Add a memory entry to a shuffle list. */
460 PARAMS ((struct accumulate *, struct shuffle **head, struct shuffle **tail,
466 struct shuffle **head;
467 struct shuffle **tail;
471 struct shuffle *n;
473 n = (struct shuffle *) objalloc_alloc (ainfo->memory,
474 sizeof (struct shuffle));
484 if (*head == (struct shuffle *) NULL)
486 if (*tail != (struct shuffle *) NULL)
1244 probably be changed to use a shuffle structure. The assembler uses
1569 /* Write out a shuffle list. */
1572 PARAMS ((bfd *, const struct ecoff_debug_swap *, struct shuffle *,
1576 ecoff_write_shuffle (abfd, swap, shuffle, space)
1579 struct shuffle *shuffle;
1582 register struct shuffle *l;
1586 for (l = shuffle; l != (struct shuffle *) NULL; l = l->next)
1671 BFD_ASSERT (ainfo->ss == (struct shuffle *) NULL);
2464 FIXME: The whole point of the shuffle code is to avoid storing
2470 /* Collect a shuffle into a memory buffer. */
2473 PARAMS ((struct shuffle *, bfd_byte *));
2477 struct shuffle *l;
2483 for (; l != (struct shuffle *) NULL; l = l->next)
2538 BFD_ASSERT (ainfo->ss == (struct shuffle *) NULL);