Lines Matching refs:LEB128
251 // LEB128 and ULEB128 values (see below), and raw blocks of bytes.
368 // Append VALUE in a signed LEB128 (Little-Endian Base 128) form.
370 // The signed LEB128 representation of an integer N is a variable
373 // - If N is between -0x40 and 0x3f, then its signed LEB128
376 // - Otherwise, its signed LEB128 representation is (N & 0x7f) |
377 // 0x80, followed by the signed LEB128 representation of N / 128,
386 Section &LEB128(long long value);
388 // Append VALUE in unsigned LEB128 (Little-Endian Base 128) form.
390 // The unsigned LEB128 representation of an integer N is a variable
393 // - If N is between 0 and 0x7f, then its unsigned LEB128
396 // - Otherwise, its unsigned LEB128 representation is (N & 0x7f) |
397 // 0x80, followed by the unsigned LEB128 representation of N /