Home
last modified time | relevance | path

Searched refs:writeULEB128 (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DBinaryStreamWriter.cpp34 Error BinaryStreamWriter::writeULEB128(uint64_t Value) { in writeULEB128() function in BinaryStreamWriter
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DBinaryStreamWriter.h81 Error writeULEB128(uint64_t Value);
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp118 unsigned writeULEB128(uint64_t Val) { in writeULEB128() function in __anon2264ce4a0111::ContiguousBlobAccumulator
1384 SHeader.sh_size += sizeof(uintX_t) + CBA.writeULEB128(E.Size); in writeSectionContent()
1412 SHeader.sh_size += sizeof(uintX_t) + CBA.writeULEB128(NumBlocks); in writeSectionContent()
1417 SHeader.sh_size += CBA.writeULEB128(BBE.AddressOffset) + in writeSectionContent()
1418 CBA.writeULEB128(BBE.Size) + in writeSectionContent()
1419 CBA.writeULEB128(BBE.Metadata); in writeSectionContent()
1671 CBA.writeULEB128(toSymbolIndex(Sym, Section.Name, /*IsDynamic=*/false)); in writeSectionContent()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DBinaryStreamTest.cpp633 ASSERT_THAT_ERROR(Writer.writeULEB128(Value), Succeeded()); in TEST_F()