Lines Matching defs:length
94 1. A 4-byte or 12-byte unsigned integer representing the length
96 including the length field itself. In the 32-bit DWARF format,
100 that gives the actual length (see Section 7.2.2). This field
114 the 32-bit DWARF format, this is a 4-byte unsigned length; in
115 the 64-bit DWARF format, this is an 8-byte unsigned length (see
135 the 32-bit DWARF format, this is a 4-byte unsigned length; in
136 the 64-bit DWARF format, this is an 8-byte unsigned length.
147 this is a 4-byte unsigned length; in the 64-bit DWARF format,
148 this is an 8-byte unsigned length. This is the type DIE offset
152 uint64_t length = read_4ubyte_unaligned_inc (dwarf, bytes);
157 if (length == DWARF3_LENGTH_64_BIT)
159 else if (unlikely (length >= DWARF3_LENGTH_MIN_ESCAPE_CODE
160 && length <= DWARF3_LENGTH_MAX_ESCAPE_CODE))
167 if (length == DWARF3_LENGTH_64_BIT)
172 length = read_8ubyte_unaligned_inc (dwarf, bytes);
205 the length of the unit, version and unit type. */
265 /* Store the header length. This is really how much we have read
287 /* The length of the unit doesn't include the length field itself.
288 The length field is either, with offset == 4: 2 * 4 - 4 == 4,
290 *next_off = off + 2 * offset_size - 4 + length;
292 /* This means that the length field is bogus, but return the CU anyway.