Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DBinaryStreamWriter.cpp35 Error BinaryStreamWriter::writeULEB128(uint64_t Value) { in writeULEB128() function in BinaryStreamWriter
/external/llvm-project/llvm/lib/Support/
DBinaryStreamWriter.cpp35 Error BinaryStreamWriter::writeULEB128(uint64_t Value) { in writeULEB128() function in BinaryStreamWriter
/external/llvm-project/llvm/include/llvm/Support/
DBinaryStreamWriter.h87 Error writeULEB128(uint64_t Value);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DBinaryStreamWriter.h87 Error writeULEB128(uint64_t Value);
/external/llvm-project/llvm/lib/ObjectYAML/
DELFEmitter.cpp117 unsigned writeULEB128(uint64_t Val) { in writeULEB128() function in __anonbe606ff10111::ContiguousBlobAccumulator
1332 SHeader.sh_size += sizeof(uintX_t) + CBA.writeULEB128(E.Size); in writeSectionContent()
1348 SHeader.sh_size += sizeof(uintX_t) + CBA.writeULEB128(NumBlocks); in writeSectionContent()
1353 SHeader.sh_size += CBA.writeULEB128(BBE.AddressOffset) + in writeSectionContent()
1354 CBA.writeULEB128(BBE.Size) + in writeSectionContent()
1355 CBA.writeULEB128(BBE.Metadata); in writeSectionContent()
1648 CBA.writeULEB128(toSymbolIndex(Sym, Section.Name, /*IsDynamic=*/false)); in writeSectionContent()
/external/llvm-project/llvm/unittests/Support/
DBinaryStreamTest.cpp634 ASSERT_THAT_ERROR(Writer.writeULEB128(Value), Succeeded()); in TEST_F()