Lines Matching defs:line_ptr

947   bfd_byte *line_ptr;
1000 line_ptr = stash->dwarf_line_buffer + unit->line_offset;
1003 lh.total_length = read_4_bytes (abfd, line_ptr);
1004 line_ptr += 4;
1008 lh.total_length = read_8_bytes (abfd, line_ptr);
1009 line_ptr += 8;
1015 lh.total_length = read_4_bytes (abfd, line_ptr);
1016 line_ptr += 4;
1019 line_end = line_ptr + lh.total_length;
1020 lh.version = read_2_bytes (abfd, line_ptr);
1021 line_ptr += 2;
1023 lh.prologue_length = read_4_bytes (abfd, line_ptr);
1025 lh.prologue_length = read_8_bytes (abfd, line_ptr);
1026 line_ptr += offset_size;
1027 lh.minimum_instruction_length = read_1_byte (abfd, line_ptr);
1028 line_ptr += 1;
1029 lh.default_is_stmt = read_1_byte (abfd, line_ptr);
1030 line_ptr += 1;
1031 lh.line_base = read_1_signed_byte (abfd, line_ptr);
1032 line_ptr += 1;
1033 lh.line_range = read_1_byte (abfd, line_ptr);
1034 line_ptr += 1;
1035 lh.opcode_base = read_1_byte (abfd, line_ptr);
1036 line_ptr += 1;
1044 lh.standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
1045 line_ptr += 1;
1049 while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
1051 line_ptr += bytes_read;
1072 line_ptr += bytes_read;
1075 while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
1077 line_ptr += bytes_read;
1098 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1099 line_ptr += bytes_read;
1101 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1102 line_ptr += bytes_read;
1104 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1105 line_ptr += bytes_read;
1109 line_ptr += bytes_read;
1112 while (line_ptr < line_end)
1133 op_code = read_1_byte (abfd, line_ptr);
1134 line_ptr += 1;
1155 line_ptr += 1;
1156 extended_op = read_1_byte (abfd, line_ptr);
1157 line_ptr += 1;
1172 address = read_address (unit, line_ptr);
1173 line_ptr += unit->addr_size;
1176 cur_file = read_string (abfd, line_ptr, &bytes_read);
1177 line_ptr += bytes_read;
1196 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1197 line_ptr += bytes_read;
1199 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1200 line_ptr += bytes_read;
1202 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1203 line_ptr += bytes_read;
1225 * read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1226 line_ptr += bytes_read;
1229 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
1230 line_ptr += bytes_read;
1238 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1239 line_ptr += bytes_read;
1246 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1247 line_ptr += bytes_read;
1260 address += read_2_bytes (abfd, line_ptr);
1261 line_ptr += 2;
1270 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1271 line_ptr += bytes_read;