Home
last modified time | relevance | path

Searched refs:readULEB128 (Results 1 – 16 of 16) sorted by relevance

/external/compiler-rt/lib/builtins/
Dgcc_personality_v0.c43 static uintptr_t readULEB128(const uint8_t** data) in readULEB128() function
74 result = readULEB128(&p); in readEncodedPointer()
209 readULEB128(&lsda); in __gcc_personality_sj0()
213 uint32_t callSiteTableLength = readULEB128(&lsda); in __gcc_personality_sj0()
221 readULEB128(&p); /* action value not used for C code */ in __gcc_personality_sj0()
/external/libcxxabi/src/
Dcxa_personality.cpp199 readULEB128(const uint8_t** data) in readULEB128() function
261 result = readULEB128(&p); in readEncodedPointer()
482 uint64_t ttypeIndex = readULEB128(&temp); in exception_spec_can_catch()
647 uintptr_t classInfoOffset = readULEB128(&lsda); in scan_eh_tab()
656 uint32_t callSiteTableLength = static_cast<uint32_t>(readULEB128(&lsda)); in scan_eh_tab()
670 uintptr_t actionEntry = readULEB128(&callSitePtr); in scan_eh_tab()
674 uintptr_t landingPad = readULEB128(&callSitePtr); in scan_eh_tab()
675 uintptr_t actionEntry = readULEB128(&callSitePtr); in scan_eh_tab()
1256 uintptr_t classInfoOffset = readULEB128(&lsda); in __cxa_call_unexpected()
/external/llvm/lib/Object/
DMachOObjectFile.cpp1367 uint64_t ExportEntry::readULEB128(const uint8_t *&Ptr) { in readULEB128() function in ExportEntry
1413 uint64_t ExportInfoSize = readULEB128(State.Current); in pushNode()
1417 State.Flags = readULEB128(State.Current); in pushNode()
1420 State.Other = readULEB128(State.Current); // dylib ordinal in pushNode()
1423 State.Address = readULEB128(State.Current); in pushNode()
1425 State.Other = readULEB128(State.Current); in pushNode()
1444 uint64_t childNodeIndex = readULEB128(Top.Current); in pushDownUntilBottom()
1562 SegmentOffset = readULEB128(); in moveNext()
1571 SegmentOffset += readULEB128(); in moveNext()
1597 RemainingLoopCount = readULEB128() - 1; in moveNext()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DMachOObjectFile.cpp2746 uint64_t ExportEntry::readULEB128(const uint8_t *&Ptr, const char **error) { in readULEB128() function in ExportEntry
2790 uint64_t ExportInfoSize = readULEB128(State.Current, &error); in pushNode()
2810 State.Flags = readULEB128(State.Current, &error); in pushNode()
2832 State.Other = readULEB128(State.Current, &error); // dylib ordinal in pushNode()
2876 State.Address = readULEB128(State.Current, &error); in pushNode()
2885 State.Other = readULEB128(State.Current, &error); in pushNode()
2939 uint64_t childNodeIndex = readULEB128(Top.Current, &error); in pushDownUntilBottom()
3097 SegmentOffset = readULEB128(&error); in moveNext()
3122 SegmentOffset += readULEB128(&error); in moveNext()
3217 Count = readULEB128(&error); in moveNext()
[all …]
DWasmObjectFile.cpp98 static uint64_t readULEB128(WasmObjectFile::ReadContext &Ctx) { in readULEB128() function
109 uint32_t StringLen = readULEB128(Ctx); in readString()
143 uint64_t result = readULEB128(Ctx); in readVaruint32()
175 Expr.Value.Global = readULEB128(Ctx); in readInitExpr()
/external/llvm/include/llvm/Object/
DMachO.h76 uint64_t readULEB128(const uint8_t *&p);
124 uint64_t readULEB128();
166 uint64_t readULEB128();
/external/llvm/lib/ProfileData/Coverage/
DCoverageMappingReader.cpp44 Error RawCoverageReader::readULEB128(uint64_t &Result) { in readULEB128() function in RawCoverageReader
56 if (auto Err = readULEB128(Result)) in readIntMax()
64 if (auto Err = readULEB128(Result)) in readSize()
188 if (auto Err = readULEB128(ColumnStart)) in readMappingRegionsSubArray()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/Coverage/
DCoverageMappingReader.cpp58 Error RawCoverageReader::readULEB128(uint64_t &Result) { in readULEB128() function in RawCoverageReader
70 if (auto Err = readULEB128(Result)) in readIntMax()
78 if (auto Err = readULEB128(Result)) in readSize()
202 if (auto Err = readULEB128(ColumnStart)) in readMappingRegionsSubArray()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp335 static uintptr_t readULEB128(const uint8_t **data) { in readULEB128() function
425 result = readULEB128(&p); in readEncodedPointer()
638 classInfoOffset = readULEB128(&lsda); in handleLsda()
646 uint32_t callSiteTableLength = readULEB128(&lsda); in handleLsda()
662 uintptr_t actionEntry = readULEB128(&callSitePtr); in handleLsda()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp377 static uintptr_t readULEB128(const uint8_t **data) { in readULEB128() function
468 result = readULEB128(&p); in readEncodedPointer()
688 classInfoOffset = readULEB128(&lsda); in handleLsda()
696 uint32_t callSiteTableLength = readULEB128(&lsda); in handleLsda()
712 uintptr_t actionEntry = readULEB128(&callSitePtr); in handleLsda()
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
DExceptionDemo.cpp382 static uintptr_t readULEB128(const uint8_t **data) { in readULEB128() function
449 result = readULEB128(&p); in readEncodedPointer()
662 classInfoOffset = readULEB128(&lsda); in handleLsda()
670 uint32_t callSiteTableLength = readULEB128(&lsda); in handleLsda()
688 uintptr_t actionEntry = readULEB128(&callSitePtr); in handleLsda()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DMachO.h93 uint64_t readULEB128(const uint8_t *&p, const char **error);
191 uint64_t readULEB128(const char **error);
242 uint64_t readULEB128(const char **error);
/external/llvm/include/llvm/ProfileData/Coverage/
DCoverageMappingReader.h85 Error readULEB128(uint64_t &Result);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMappingReader.h111 Error readULEB128(uint64_t &Result);
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/DA7778FB66018A4E9B4110ED06E730D00/
Dbreakpad_unittests.sym50354 FUNC 636d8 24 0 __cxxabiv1::readULEB128
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/D6D1FEC9A15DE7F38A236898871A2E770/
Dbreakpad_unittests.sym51611 FUNC 98660 30 0 __cxxabiv1::readULEB128