Home
last modified time | relevance | path

Searched refs:col_offset (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/gpl3/binutils/dist/binutils/
H A Ddwarf.c8482 int64_t *col_offset; member
8541 fc->col_offset = xcrealloc (fc->col_offset, fc->ncols, in frame_need_space()
8542 sizeof (*fc->col_offset)); in frame_need_space()
8544 if (fc->col_type == NULL || fc->col_offset == NULL) in frame_need_space()
8555 fc->col_offset[prev] = 0; in frame_need_space()
8955 sprintf (tmp, "c%+" PRId64, fc->col_offset[r]); in frame_display_row()
8958 sprintf (tmp, "v%+" PRId64, fc->col_offset[r]); in frame_display_row()
8961 sprintf (tmp, "%s", regname (fc->col_offset[r], 0)); in frame_display_row()
9000 fc->col_offset = xmalloc (sizeof (*fc->col_offset)); in read_cie()
9123 free (fc->col_offset); in read_cie()
[all …]
H A DChangeLog-20202009 fde_fc col_type and col_offset.
/netbsd-src/external/gpl3/binutils.old/dist/binutils/
H A Ddwarf.c8382 int *col_offset; member
8441 fc->col_offset = (int *) xcrealloc (fc->col_offset, fc->ncols, sizeof (int)); in frame_need_space()
8443 if (fc->col_type == NULL || fc->col_offset == NULL) in frame_need_space()
8454 fc->col_offset[prev] = 0; in frame_need_space()
8846 sprintf (tmp, "c%+d", fc->col_offset[r]); in frame_display_row()
8849 sprintf (tmp, "v%+d", fc->col_offset[r]); in frame_display_row()
8852 sprintf (tmp, "%s", regname (fc->col_offset[r], 0)); in frame_display_row()
8891 fc->col_offset = (int *) xmalloc (sizeof (int)); in read_cie()
9014 free (fc->col_offset); in read_cie()
9269 fc->col_offset = (int *) xmalloc (sizeof (int)); in display_debug_frames()
[all …]
H A DChangeLog-20202009 fde_fc col_type and col_offset.
/netbsd-src/games/rogue/
H A Dlevel.c214 short row_offset, col_offset; in make_room() local
285 col_offset = get_rand(0, ((right_col - left_col) - width + 1)); in make_room()
290 left_col += col_offset; in make_room()
/netbsd-src/external/gpl3/binutils/dist/
H A DChangeLog.git83873 * dwarf.c (struct Frame_Chunk): Make col_offset an int64_t.
83874 Adjust all places allocating col_offset and col_type to use
83876 (frame_display_row): Adjust printing of col_offset.