Home | History | Annotate | Download | only in gas

Lines Matching defs:lf

202       struct line_file *lf;
213 for (lf = lb->files_head; lf; lf = lf->next)
216 len += sizeof (struct cv_line) * lf->num_lines;
243 lf = lb->files_head;
245 bfd_putl32(lf->fileno * FILE_ENTRY_LENGTH, &block->file_id);
246 bfd_putl32(lf->num_lines, &block->num_lines);
248 + (sizeof (struct cv_line) * lf->num_lines),
253 while (lf->lines_head)
258 l = lf->lines_head;
268 lf->lines_head = l->next;
275 lb->files_head = lf->next;
276 free (lf);
467 struct line_file *lf;
504 lf = xmalloc (sizeof (struct line_file));
505 lf->next = NULL;
506 lf->fileno = filenr;
507 lf->lines_head = lf->lines_tail = NULL;
508 lf->num_lines = 0;
511 lb->files_head = lf;
513 lb->files_tail->next = lf;
515 lb->files_tail = lf;
519 lf = lb->files_tail;
527 if (!lf->lines_head)
528 lf->lines_head = l;
530 lf->lines_tail->next = l;
532 lf->lines_tail = l;
533 lf->num_lines++;