OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:unit_length
(Results
1 - 5
of
5
) sorted by null
/external/elfutils/libdw/
dwarf_getsrclines.c
214
Dwarf_Word
unit_length
= read_4ubyte_unaligned_inc (dbg, linep);
local
216
if (unlikely (
unit_length
== DWARF3_LENGTH_64_BIT))
220
unit_length
= read_8ubyte_unaligned_inc (dbg, linep);
225
if (unlikely (
unit_length
> (size_t) (lineendp - linep)
226
||
unit_length
< 2 + length + 5 * 1))
228
lineendp = linep +
unit_length
;
/toolchain/binutils/binutils-2.25/gold/
dwarf_reader.cc
567
// Read the
unit_length
field.
568
uint64_t
unit_length
= this->dwinfo_->read_from_pointer<32>(pinfo);
local
570
if (
unit_length
== 0xffffffff)
572
unit_length
= this->dwinfo_->read_from_pointer<64>(pinfo);
573
this->unit_length_ =
unit_length
+ 12;
579
this->unit_length_ =
unit_length
+ 4;
582
this->end_of_table_ = pinfo +
unit_length
;
584
// If
unit_length
is too big, maybe we should reject the whole table,
1277
uint32_t
unit_length
=
local
[
all
...]
dwp.cc
1237
section_size_type
unit_length
= unit_set->sections[info_sect].size;
local
[
all
...]
/external/valgrind/coregrind/m_debuginfo/
readdwarf3.c
431
.
unit_length
:: InitialLength field of the CU Header.
433
include the size of the .
unit_length
field itself, which is
436
ULong
unit_length
;
member in struct:__anon26345
[
all
...]
/external/elfutils/src/
readelf.c
5547
Dwarf_Word
unit_length
= read_4ubyte_unaligned_inc (dbg, readp);
local
[
all
...]
Completed in 303 milliseconds