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

  /external/llvm/tools/obj2yaml/
macho2yaml.cpp 229 uint64_t ULEB = 0;
234 ULEB = decodeULEB128(OpCode + 1, &Count);
235 RebaseOp.ExtraData.push_back(ULEB);
237 // Intentionally no break here -- This opcode has two ULEB values
243 ULEB = decodeULEB128(OpCode + 1, &Count);
244 RebaseOp.ExtraData.push_back(ULEB);
276 uint64_t ULEB = 0;
281 ULEB = decodeULEB128(OpCode + 1, &Count);
282 BindOp.ULEBExtraData.push_back(ULEB);
284 // Intentionally no break here -- this opcode has two ULEB value
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 164 SmallVector<uint8_t, 4> ULEB;
165 do { ULEB.push_back(Opcodes[OI ^ 3]); } while (Opcodes[OI++ ^ 3] & 0x80);
167 for (unsigned BI = 0, BE = ULEB.size(); BI != BE; ++BI)
168 OS << format("0x%02X ", ULEB[BI]);
171 for (unsigned BI = 0, BE = ULEB.size(); BI != BE; ++BI)
172 Value = Value | ((ULEB[BI] & 0x7f) << (7 * BI));

Completed in 77 milliseconds