Lines Matching refs:leb128
54 _dwarf_decode_u_leb128_chk(Dwarf_Small * leb128, in _dwarf_decode_u_leb128_chk() argument
66 if (leb128 >=endptr) { in _dwarf_decode_u_leb128_chk()
73 if ((*leb128 & 0x80) == 0) { in _dwarf_decode_u_leb128_chk()
77 *outval = *leb128; in _dwarf_decode_u_leb128_chk()
80 if ((leb128+1) >=endptr) { in _dwarf_decode_u_leb128_chk()
83 if ((*(leb128 + 1) & 0x80) == 0) { in _dwarf_decode_u_leb128_chk()
87 word_number = *leb128 & 0x7f; in _dwarf_decode_u_leb128_chk()
88 word_number |= (*(leb128 + 1) & 0x7f) << 7; in _dwarf_decode_u_leb128_chk()
101 byte = *leb128; in _dwarf_decode_u_leb128_chk()
123 ++leb128; in _dwarf_decode_u_leb128_chk()
124 if ((leb128) >=endptr) { in _dwarf_decode_u_leb128_chk()
127 byte = *leb128; in _dwarf_decode_u_leb128_chk()
136 _dwarf_decode_s_leb128_chk(Dwarf_Small * leb128, Dwarf_Unsigned * leb128_length, in _dwarf_decode_s_leb128_chk() argument
151 if (leb128 >= endptr) { in _dwarf_decode_s_leb128_chk()
154 byte = *leb128; in _dwarf_decode_s_leb128_chk()
166 ++leb128; in _dwarf_decode_s_leb128_chk()
167 if (leb128 >= endptr) { in _dwarf_decode_s_leb128_chk()
170 byte = *leb128; in _dwarf_decode_s_leb128_chk()