Lines Matching full:leb128
55 // unsigned LEB128 numbers, and Linux C++ exception handling data's
79 // Read an unsigned LEB128 (Little Endian Base 128) number from
83 // The unsigned LEB128 representation of an integer N is a variable
86 // - If N is between 0 and 0x7f, then its unsigned LEB128
89 // - Otherwise, its unsigned LEB128 representation is (N & 0x7f) |
90 // 0x80, followed by the unsigned LEB128 representation of N /
98 // Read a signed LEB128 number from BUFFER and return it as an
101 // The signed LEB128 representation of an integer N is a variable
104 // - If N is between -0x40 and 0x3f, then its signed LEB128
108 // - Otherwise, its signed LEB128 representation is (N & 0x7f) |
109 // 0x80, followed by the signed LEB128 representation of N / 128,
212 // the DWARF LEB128 encoding.