Searched refs:LEB128 (Results 1 - 9 of 9) sorted by relevance

/external/google-breakpad/src/common/dwarf/
H A Dcfi_assembler.cc67 LEB128(data_alignment_factor);
167 LEB128(address);
H A Dcfi_assembler.h165 // unsigned LEB128 length, followed by that many bytes of data.
210 CFISection &LEB128(long long v) { Section::LEB128(v); return *this; } function in class:google_breakpad::CFISection
H A Ddwarf2reader_cfi_unittest.cc837 .D8(dwarf2reader::DW_CFA_def_cfa_sf).ULEB128(0x8ccb32b7).LEB128(0x9ea)
838 .D8(dwarf2reader::DW_CFA_def_cfa_sf).ULEB128(0x9b40f5da).LEB128(-0x40a2)
908 .D8(dwarf2reader::DW_CFA_def_cfa_offset_sf).LEB128(0x970)
909 .D8(dwarf2reader::DW_CFA_def_cfa_offset_sf).LEB128(-0x2cd)
1021 .ULEB128(0x997c23ee).LEB128(0x2d00)
1023 .ULEB128(0x9519eb82).LEB128(-0xa77)
1059 .D8(dwarf2reader::DW_CFA_val_offset_sf).ULEB128(0x6f4f).LEB128(0xaab)
1060 .D8(dwarf2reader::DW_CFA_val_offset_sf).ULEB128(0x2483).LEB128(-0x8a2)
H A Dbytereader_unittest.cc71 .LEB128(-0x4f337badf4483f83LL)
/external/llvm/lib/Support/
H A DAndroid.mk38 LEB128.cpp \
/external/google-breakpad/src/common/
H A Dtest_assembler_unittest.cc1416 section.LEB128(0);
1422 section.LEB128(0x3f);
1428 section.LEB128(0x40);
1434 section.LEB128(0x7f);
1440 section.LEB128(0x80);
1446 section.LEB128(0xff);
1452 section.LEB128(0x1fff);
1458 section.LEB128(0x2000);
1464 section.LEB128(-1);
1470 section.LEB128(
[all...]
H A Dtest_assembler.h251 // 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
[all...]
H A Dtest_assembler.cc303 Section &Section::LEB128(long long value) { function in class:google_breakpad::test_assembler::Section
/external/llvm/unittests/Support/
H A DDataExtractorTest.cpp101 TEST(DataExtractorTest, LEB128) {

Completed in 651 milliseconds