Home | History | Annotate | Download | only in elfcopy

Lines Matching defs:ncols

2926     int ncols;
2950 int prev = fc->ncols;
2952 if (reg < fc->ncols)
2955 fc->ncols = reg + 1;
2956 fc->col_type = xcrealloc (fc->col_type, fc->ncols, sizeof (short int));
2957 fc->col_offset = xcrealloc (fc->col_offset, fc->ncols, sizeof (int));
2959 while (prev < fc->ncols)
2973 if (*max_regs < fc->ncols)
2974 *max_regs = fc->ncols;
3001 for (r = 0; r < fc->ncols; r++)
3132 fc->ncols = 0;
3257 fc->ncols = 0;
3267 fc->ncols = cie->ncols;
3268 fc->col_type = xcmalloc (fc->ncols, sizeof (short int));
3269 fc->col_offset = xcmalloc (fc->ncols, sizeof (int));
3270 memcpy (fc->col_type, cie->col_type, fc->ncols * sizeof (short int));
3271 memcpy (fc->col_offset, cie->col_offset, fc->ncols * sizeof (int));
3604 rs->ncols = fc->ncols;
3605 rs->col_type = xcmalloc (rs->ncols, sizeof (short int));
3606 rs->col_offset = xcmalloc (rs->ncols, sizeof (int));
3607 memcpy (rs->col_type, fc->col_type, rs->ncols);
3608 memcpy (rs->col_offset, fc->col_offset, rs->ncols * sizeof (int));
3620 frame_need_space (fc, rs->ncols-1);
3621 memcpy (fc->col_type, rs->col_type, rs->ncols);
3623 rs->ncols * sizeof (int));