HomeSort by relevance Sort by last modified time
    Searched refs:leb128 (Results 1 - 5 of 5) sorted by null

  /frameworks/compile/mclinker/unittests/
LEB128Test.cpp 9 #include <mcld/Support/LEB128.h>
46 leb128::ByteType buffer[2];
47 leb128::ByteType *result;
51 size = leb128::encode<uint32_t>(result, 2);
57 size = leb128::encode<uint32_t>(result, 127);
63 size = leb128::encode<uint32_t>(result, 128);
70 size = leb128::encode<uint32_t>(result, 129);
77 size = leb128::encode<uint32_t>(result, 130);
84 size = leb128::encode<uint32_t>(result, 12857);
92 leb128::ByteType buffer[2]
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 1 //===- LEB128.h -----------------------------------------------------------===//
21 namespace leb128 { namespace in namespace:mcld
62 * Encoding functions for signed LEB128.
86 * Decoding functions for signed LEB128.
96 * rid of annoying type conversions when using the LEB128 encoding/decoding APIs
114 } // namespace of leb128
  /external/qemu/elff/
dwarf_cu.cc 60 Dwarf_Value leb128; local
103 * size is encoded with unsigned LEB128 value, and block data immediately
106 reinterpret_cast<const Dwarf_Leb128*>(prop)->process_unsigned(&leb128);
108 attr_value->block.block_size = leb128.u32;
109 attr_value->block.block_ptr = prop + leb128.encoded_size;
112 leb128.encoded_size);
152 /* Property is signed LEB128 value. */
157 /* Property is unsigned LEB128 value. */
572 /* One parameter: signed LEB128 value to add to the current line
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_cu.cc 60 Dwarf_Value leb128; local
103 * size is encoded with unsigned LEB128 value, and block data immediately
106 reinterpret_cast<const Dwarf_Leb128*>(prop)->process_unsigned(&leb128);
108 attr_value->block.block_size = leb128.u32;
109 attr_value->block.block_ptr = prop + leb128.encoded_size;
112 leb128.encoded_size);
152 /* Property is signed LEB128 value. */
157 /* Property is unsigned LEB128 value. */
572 /* One parameter: signed LEB128 value to add to the current line
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 1 //===- LEB128.cpp ---------------------------------------------------------===//
9 #include <mcld/Support/LEB128.h>
13 namespace leb128 { namespace in namespace:mcld
15 //===---------------------- LEB128 Encoding APIs -------------------------===//
93 //===---------------------- LEB128 Decoding APIs -------------------------===//
183 * Signed LEB128 decoding is Similar to the unsigned version but setup the sign
227 } // namespace of leb128

Completed in 828 milliseconds