Home | History | Annotate | Download | only in libdw

Lines Matching defs:length

71      1.  A 4-byte or 12-byte unsigned integer representing the length
73 including the length field itself. In the 32-bit DWARF format,
77 that gives the actual length (see Section 7.2.2).
86 the 32-bit DWARF format, this is a 4-byte unsigned length; in
87 the 64-bit DWARF format, this is an 8-byte unsigned length (see
94 uint64_t length = read_4ubyte_unaligned_inc (dwarf, bytes);
99 if (length == DWARF3_LENGTH_64_BIT)
101 else if (unlikely (length >= DWARF3_LENGTH_MIN_ESCAPE_CODE
102 && length <= DWARF3_LENGTH_MAX_ESCAPE_CODE))
117 if (length == DWARF3_LENGTH_64_BIT)
119 length = read_8ubyte_unaligned_inc (dwarf, bytes);
152 /* Store the header length. */
171 *next_off = off + 2 * offset_size - 4 + length;