reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/DebugInfo/DWARF/DWARFContext.cpp
 1042               decodeSLEB128(Location->data() + 1, nullptr, Location->end());
lib/Object/ELF.cpp
  369     int64_t Result = decodeSLEB128(Cur, &Len, End, &ErrStr);
lib/Object/MachOObjectFile.cpp
 3935   int64_t Result = decodeSLEB128(Ptr, &Count, Opcodes.end(), error);
lib/Object/WasmObjectFile.cpp
  126   uint64_t Result = decodeSLEB128(Ctx.Ptr, &Count, Ctx.End, &Error);
lib/Support/BinaryStreamReader.cpp
   70   Dest = decodeSLEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end());
lib/Support/DataExtractor.cpp
  200   int64_t result = decodeSLEB128(
lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
   89   Val = Signed ? decodeSLEB128(Bytes.data() + Size, &N,
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
 1110     llvm::decodeSLEB128(frameData + DataAlignField, &lengthFieldSize);
tools/lld/wasm/InputChunks.cpp
   65       existingValue = static_cast<uint32_t>(decodeSLEB128(loc, &bytesRead));
tools/obj2yaml/macho2yaml.cpp
  334       SLEB = decodeSLEB128(OpCode + 1, &Count);