/external/llvm/tools/obj2yaml/ |
D | macho2yaml.cpp | 234 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes() 243 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes() 281 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes() 290 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes() 385 Entry.TerminalSize = decodeULEB128(CurrPtr, &Count); in processExportNode() 388 Entry.Flags = decodeULEB128(CurrPtr, &Count); in processExportNode() 392 Entry.Other = decodeULEB128(CurrPtr, &Count); in processExportNode() 396 Entry.Address = decodeULEB128(CurrPtr, &Count); in processExportNode() 399 Entry.Other = decodeULEB128(CurrPtr, &Count); in processExportNode() 414 Child.NodeOffset = decodeULEB128(CurrPtr, &Count); in processExportNode()
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | macho2yaml.cpp | 361 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes() 371 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes() 409 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes() 419 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes() 514 Entry.TerminalSize = decodeULEB128(CurrPtr, &Count); in processExportNode() 517 Entry.Flags = decodeULEB128(CurrPtr, &Count); in processExportNode() 521 Entry.Other = decodeULEB128(CurrPtr, &Count); in processExportNode() 525 Entry.Address = decodeULEB128(CurrPtr, &Count); in processExportNode() 528 Entry.Other = decodeULEB128(CurrPtr, &Count); in processExportNode() 543 Child.NodeOffset = decodeULEB128(CurrPtr, &Count); in processExportNode()
|
/external/capstone/contrib/sysz_update/ |
D | 0004-capstone-generate-GenDisassemblerTables.inc.patch | 108 unsigned Opc = decodeULEB128(Buffer); 371 + << " Val = (InsnType)decodeULEB128(++Ptr, &Len); \\\n" 383 + << " ExpectedValue = (uint32_t)decodeULEB128(++Ptr, &Len); \\\n" 392 + << " PIdx = (uint32_t)decodeULEB128(++Ptr, &Len); \\\n" 403 + << " Opc = (unsigned)decodeULEB128(++Ptr, &Len); \\\n" 405 + << " DecodeIdx = (unsigned)decodeULEB128(Ptr, &Len); \\\n" 411 + << " PositiveMask = (InsnType)decodeULEB128(++Ptr, &Len); \\\n" 413 + << " NegativeMask = (InsnType)decodeULEB128(Ptr, &Len); \\\n"
|
/external/llvm-project/lld/MachO/ |
D | ExportTrie.cpp | 270 uint64_t terminalSize = decodeULEB128(buf, &ulebSize); in parse() 275 flags = decodeULEB128(buf, &ulebSize); in parse() 284 offset = decodeULEB128(buf, &ulebSize); in parse()
|
/external/llvm-project/lld/wasm/ |
D | InputChunks.cpp | 72 existingValue = decodeULEB128(loc, &bytesRead); in verifyRelocTargets() 75 existingValue = decodeULEB128(loc, &bytesRead); in verifyRelocTargets() 290 decodeULEB128(funcStart, &functionSizeLength); in calculateSize() 331 decodeULEB128(funcStart, &count); in writeTo()
|
/external/capstone/ |
D | LEB128.h | 24 static inline uint64_t decodeULEB128(const uint8_t *p, unsigned *n) in decodeULEB128() function
|
/external/llvm-project/llvm/unittests/Support/ |
D | LEB128Test.cpp | 110 uint64_t Actual = decodeULEB128(reinterpret_cast<const uint8_t *>(VALUE), \ in TEST() 117 EXPECT_EQ(0u, decodeULEB128(nullptr, nullptr, nullptr)); in TEST()
|
/external/llvm/include/llvm/Support/ |
D | LEB128.h | 80 inline uint64_t decodeULEB128(const uint8_t *p, unsigned *n = nullptr) {
|
/external/capstone/arch/XCore/ |
D | XCoreGenDisassemblerTables.inc | 791 Val = (InsnType)decodeULEB128(++Ptr, &Len); \ 803 ExpectedValue = (uint32_t)decodeULEB128(++Ptr, &Len); \ 812 PIdx = (uint32_t)decodeULEB128(++Ptr, &Len); \ 823 Opc = (unsigned)decodeULEB128(++Ptr, &Len); \ 825 DecodeIdx = (unsigned)decodeULEB128(Ptr, &Len); \ 831 PositiveMask = (InsnType)decodeULEB128(++Ptr, &Len); \ 833 NegativeMask = (InsnType)decodeULEB128(Ptr, &Len); \
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | LEB128.h | 128 inline uint64_t decodeULEB128(const uint8_t *p, unsigned *n = nullptr,
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | LEB128.h | 128 inline uint64_t decodeULEB128(const uint8_t *p, unsigned *n = nullptr,
|
/external/llvm/tools/llvm-readobj/ |
D | ARMAttributeParser.cpp | 77 uint64_t Value = decodeULEB128(Data + Offset, &Length); in ParseInteger() 564 uint64_t Value = decodeULEB128(Data + Offset, &Length); in ParseIndexList() 576 uint64_t Tag = decodeULEB128(Data + Offset, &Length); in ParseAttributeList()
|
/external/llvm/lib/ProfileData/Coverage/ |
D | CoverageMappingReader.cpp | 48 Result = decodeULEB128(reinterpret_cast<const uint8_t *>(Data.data()), &N); in readULEB128() 555 decodeULEB128(reinterpret_cast<const uint8_t *>(Data.data()), &N); in loadTestingFormat() 563 decodeULEB128(reinterpret_cast<const uint8_t *>(Data.data()), &N); in loadTestingFormat()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | ARMAttributeParser.cpp | 77 uint64_t Value = decodeULEB128(Data + Offset, &DecodeLength); in ParseInteger() 591 uint64_t Value = decodeULEB128(Data + Offset, &DecodeLength); in ParseIndexList() 603 uint64_t Tag = decodeULEB128(Data + Offset, &DecodeLength); in ParseAttributeList()
|
D | BinaryStreamReader.cpp | 55 Dest = decodeULEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); in readULEB128()
|
D | DataExtractor.cpp | 183 uint64_t result = decodeULEB128( in getULEB128()
|
/external/llvm-project/llvm/lib/Support/ |
D | BinaryStreamReader.cpp | 55 Dest = decodeULEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); in readULEB128()
|
D | DataExtractor.cpp | 222 return getLEB128(Data, offset_ptr, Err, decodeULEB128); in getULEB128()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/ |
D | CoverageMappingReader.cpp | 62 Result = decodeULEB128(Data.bytes_begin(), &N); in readULEB128() 631 uint64_t ProfileNamesSize = decodeULEB128(Data.bytes_begin(), &N); in loadTestingFormat() 638 uint64_t Address = decodeULEB128(Data.bytes_begin(), &N); in loadTestingFormat()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | SampleProfReader.cpp | 292 uint64_t Val = decodeULEB128(Data, &NumBytesRead); in readNumber() 951 uint64_t Magic = decodeULEB128(Data); in hasFormat() 958 uint64_t Magic = decodeULEB128(Data); in hasFormat() 965 uint64_t Magic = decodeULEB128(Data); in hasFormat()
|
/external/llvm/unittests/Support/ |
D | LEB128Test.cpp | 91 uint64_t Actual = decodeULEB128(reinterpret_cast<const uint8_t *>(VALUE), \ in TEST()
|
/external/llvm-project/llvm/lib/ProfileData/ |
D | SampleProfReader.cpp | 305 uint64_t Val = decodeULEB128(Data, &NumBytesRead); in readNumber() 1081 uint64_t Magic = decodeULEB128(Data); in hasFormat() 1088 uint64_t Magic = decodeULEB128(Data); in hasFormat() 1095 uint64_t Magic = decodeULEB128(Data); in hasFormat()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/Disassembler/ |
D | WebAssemblyDisassembler.cpp | 90 : static_cast<int64_t>(decodeULEB128(Bytes.data() + Size, &N, in nextLEB()
|
/external/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/ |
D | WebAssemblyDisassembler.cpp | 91 : static_cast<int64_t>(decodeULEB128(Bytes.data() + Size, &N, in nextLEB()
|
/external/llvm-project/llvm/lib/ProfileData/Coverage/ |
D | CoverageMappingReader.cpp | 67 Result = decodeULEB128(Data.bytes_begin(), &N); in readULEB128() 823 uint64_t ProfileNamesSize = decodeULEB128(Data.bytes_begin(), &N); in loadTestingFormat() 830 uint64_t Address = decodeULEB128(Data.bytes_begin(), &N); in loadTestingFormat()
|