Searched defs:leb128_length (Results 1 - 9 of 9) sorted by relevance

/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_leb.c47 _dwarf_decode_u_leb128(Dwarf_Small * leb128, Dwarf_Word * leb128_length) argument
60 if (leb128_length != NULL)
61 *leb128_length = 1;
64 if (leb128_length != NULL)
65 *leb128_length = 2;
71 if (leb128_length != NULL)
72 *leb128_length = 3;
79 if (leb128_length != NULL)
80 *leb128_length = 4;
100 if (leb128_length !
118 _dwarf_decode_s_leb128(Dwarf_Small * leb128, Dwarf_Word * leb128_length) argument
[all...]
H A Ddwarf_die_deliv.c406 Dwarf_Word leb128_length = 0; local
463 _dwarf_decode_u_leb128(info_ptr, &leb128_length);
H A Ddwarf_form.c771 Dwarf_Word leb128_length = 0; local
812 &leb128_length);
813 data = attr->ar_debug_info_ptr + leb128_length;
H A Ddwarf_loc.c100 Dwarf_Word leb128_length = 0; local
166 operand1 = _dwarf_decode_u_leb128(loc_ptr, &leb128_length);
167 loc_ptr = loc_ptr + leb128_length;
168 offset = offset + leb128_length;
265 operand1 = _dwarf_decode_u_leb128(loc_ptr, &leb128_length);
266 loc_ptr = loc_ptr + leb128_length;
267 offset = offset + leb128_length;
271 operand1 = _dwarf_decode_s_leb128(loc_ptr, &leb128_length);
272 loc_ptr = loc_ptr + leb128_length;
273 offset = offset + leb128_length;
[all...]
H A Ddwarf_print_lines.c148 holds the decoded number, and leb128_length is its length in
151 Dwarf_Word leb128_length=0; local
620 &leb128_length);
621 line_ptr = line_ptr + leb128_length;
624 &leb128_length);
625 line_ptr = line_ptr + leb128_length;
628 &leb128_length);
629 line_ptr = line_ptr + leb128_length;
H A Ddwarf_util.c66 Dwarf_Word leb128_length = 0; local
120 length = _dwarf_decode_u_leb128(val_ptr, &leb128_length);
121 return (length + leb128_length);
133 length = _dwarf_decode_u_leb128(val_ptr, &leb128_length);
134 return (leb128_length);
167 _dwarf_decode_s_leb128(val_ptr, &leb128_length);
168 return (leb128_length);
174 _dwarf_decode_u_leb128(val_ptr, &leb128_length);
175 return (leb128_length);
H A Ddwarf_frame2.c526 Dwarf_Word leb128_length = 0; local
578 &leb128_length);
580 frame_ptr = frame_ptr + leb128_length;
1459 Dwarf_Word leb128_length = 0; local
1462 _dwarf_decode_u_leb128(frame_ptr, &leb128_length);
1463 augdata_size += leb128_length;
1464 frame_ptr += leb128_length;
H A Ddwarf_line.c393 holds the decoded number, and leb128_length is its length in
396 Dwarf_Word leb128_length = 0; local
938 &leb128_length);
939 line_ptr = line_ptr + leb128_length;
943 &leb128_length);
944 line_ptr = line_ptr + leb128_length;
948 &leb128_length);
949 line_ptr = line_ptr + leb128_length;
1848 Dwarf_Word leb128_length = 0; local
1880 lastmod = _dwarf_decode_u_leb128(line_ptr, &leb128_length);
[all...]
H A Ddwarf_frame.c216 Dwarf_Word leb128_length; local
371 _dwarf_decode_u_leb128(instr_ptr, &leb128_length);
372 instr_ptr = instr_ptr + leb128_length;
510 _dwarf_decode_u_leb128(instr_ptr, &leb128_length);
511 instr_ptr += leb128_length;
658 _dwarf_decode_u_leb128(instr_ptr, &leb128_length);
659 instr_ptr += leb128_length;
692 _dwarf_decode_u_leb128(instr_ptr, &leb128_length);
693 instr_ptr += leb128_length;
764 _dwarf_decode_s_leb128(instr_ptr, &leb128_length);
1059 Dwarf_Word leb128_length = 0; local
[all...]

Completed in 74 milliseconds