/freebsd/contrib/opencsd/decoder/source/mem_acc/ |
H A D | trc_mem_acc_mapper.cpp | 81 uint32_t readBytes = 0; in ReadTargetMemory() local 101 readBytes = *num_bytes; in ReadTargetMemory() 102 …rr = m_cache.readBytesFromCache(m_acc_curr, address, mem_space, cs_trace_id, &readBytes, p_buffer); in ReadTargetMemory() 108 … readBytes = m_acc_curr->readBytes(address, mem_space, cs_trace_id, *num_bytes, p_buffer); in ReadTargetMemory() 110 if (readBytes > *num_bytes) in ReadTargetMemory() 118 *num_bytes = readBytes; in ReadTargetMemory()
|
H A D | trc_mem_acc_cb.cpp | 22 const uint32_t TrcMemAccCB::readBytes(const ocsd_vaddr_t address, const ocsd_mem_space_acc_t memSpa… in readBytes() function in TrcMemAccCB 26 return m_p_CBclass->readBytes(address,memSpace,reqBytes,byteBuffer); in readBytes()
|
H A D | trc_mem_acc_bufptr.cpp | 44 const uint32_t TrcMemAccBufPtr::readBytes(const ocsd_vaddr_t address, const ocsd_mem_space_acc_t me… in readBytes() function in TrcMemAccBufPtr
|
H A D | trc_mem_acc_cache.cpp | 94 …m_mru[m_mru_idx].valid_len = p_accessor->readBytes(address, mem_space, trcID, MEM_ACC_CACHE_PAGE_S… in readBytesFromCache()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | BinaryStreamRef.cpp | 21 Error readBytes(uint64_t Offset, uint64_t Size, in getEndian() 23 return BBS.readBytes(Offset, Size, Buffer); in getEndian() 42 Error readBytes(uint64_t Offset, uint64_t Size, 44 return BBS.readBytes(Offset, Size, Buffer); in getEndian() 73 Error BinaryStreamRef::readBytes(uint64_t Offset, uint64_t Size, in BinaryStreamRef() 77 return BorrowedImpl->readBytes(ViewOffset + Offset, Size, Buffer); 24 Error readBytes(uint64_t Offset, uint64_t Size, readBytes() function in __anon8e400b6a0111::ArrayRefImpl 47 Error readBytes(uint64_t Offset, uint64_t Size, readBytes() function in __anon8e400b6a0111::MutableArrayRefImpl 78 Error BinaryStreamRef::readBytes(uint64_t Offset, uint64_t Size, readBytes() function in BinaryStreamRef
|
H A D | BinaryStreamReader.cpp | 36 Error BinaryStreamReader::readBytes(ArrayRef<uint8_t> &Buffer, uint32_t Size) { 37 if (auto EC = Stream.readBytes(Offset, Size, Buffer)) in readBytes() function in BinaryStreamReader 49 if (auto Err = readBytes(NextByte, 1)) in readULEB128() 64 if (auto Err = readBytes(NextByte, 1)) in readSLEB128() 123 if (auto EC = readBytes(Bytes, Length)) in readFixedString() 161 auto EC = Stream.readBytes(Offset, 1, Buffer); in peek()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | BinaryByteStream.h | 40 Error readBytes(uint64_t Offset, uint64_t Size, in readBytes() function 99 Error readBytes(uint64_t Offset, uint64_t Size, in readBytes() function 101 return ImmutableStream.readBytes(Offset, Size, Buffer); in readBytes() 146 Error readBytes(uint64_t Offset, uint64_t Size, 237 Error readBytes(uint64_t Offset, uint64_t Size, in getEndian() 239 return Impl.readBytes(Offset, Size, Buffer); 147 Error readBytes(uint64_t Offset, uint64_t Size, readBytes() function 240 Error readBytes(uint64_t Offset, uint64_t Size, readBytes() function
|
H A D | BinaryStreamReader.h | 58 Error readBytes(ArrayRef<uint8_t> &Buffer, uint32_t Size); 72 if (auto EC = readBytes(Bytes, sizeof(T))) in readInteger() 162 if (auto EC = readBytes(Buffer, sizeof(T))) in readObject() 189 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) in readArray()
|
H A D | BinaryStream.h | 43 virtual Error readBytes(uint64_t Offset, uint64_t Size,
|
H A D | BinaryItemStream.h | 40 Error readBytes(uint64_t Offset, uint64_t Size, 41 Error readBytes(uint64_t Offset, uint64_t Size, readBytes() function
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/ |
H A D | MappedBlockStream.cpp | 86 Error MappedBlockStream::readBytes(uint64_t Offset, uint64_t Size, 150 if (auto EC = readBytes(Offset, MutableArrayRef<uint8_t>(WriteBuffer, Size))) in readBytes() 186 if (auto EC = MsfData.readBytes(MsfOffset, BlockSize, BlockData)) in readLongestContiguousChunk() 228 if (auto EC = MsfData.readBytes(MsfOffset, BlockSize, BlockData)) { in tryReadContiguously() 237 Error MappedBlockStream::readBytes(uint64_t Offset, 254 if (auto EC = MsfData.readBytes(Offset, BlockSize, BlockData)) in readBytes() 371 Error WritableMappedBlockStream::readBytes(uint64_t Offset, uint64_t Size, 373 return ReadInterface.readBytes(Offset, Size, Buffer); in readBytes() 87 Error MappedBlockStream::readBytes(uint64_t Offset, uint64_t Size, readBytes() function in MappedBlockStream 238 Error MappedBlockStream::readBytes(uint64_t Offset, readBytes() function in MappedBlockStream 372 Error WritableMappedBlockStream::readBytes(uint64_t Offset, uint64_t Size, readBytes() function in WritableMappedBlockStream
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
H A D | MappedBlockStream.h | 61 Error readBytes(uint64_t Offset, uint64_t Size, 84 Error readBytes(uint64_t Offset, MutableArrayRef<uint8_t> Buffer); 128 Error readBytes(uint64_t Offset, uint64_t Size,
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/ |
H A D | SimpleRemoteEPCUtils.cpp | 138 Error FDSimpleRemoteEPCTransport::readBytes(char *Dst, size_t Size, in readBytes() function in llvm::orc::FDSimpleRemoteEPCTransport 194 if (auto Err2 = readBytes(HeaderBuffer, FDMsgHeader::Size, &IsEOF)) { in listenLoop() 227 if (auto Err2 = readBytes(ArgBytes.data(), ArgBytes.size())) { in listenLoop()
|
/freebsd/contrib/opencsd/decoder/include/mem_acc/ |
H A D | trc_mem_acc_file.h | 59 …virtual const uint32_t readBytes(const ocsd_vaddr_t s_address, const ocsd_mem_space_acc_t memSpace… in readBytes() function 80 …virtual const uint32_t readBytes(const ocsd_vaddr_t address, const ocsd_mem_space_acc_t memSpace, …
|
H A D | trc_mem_acc_cb_if.h | 66 …virtual const uint32_t readBytes(const ocsd_vaddr_t s_address, const ocsd_mem_space_acc_t memSpace…
|
H A D | trc_mem_acc_bufptr.h | 67 …virtual const uint32_t readBytes(const ocsd_vaddr_t address, const ocsd_mem_space_acc_t memSpace, …
|
H A D | trc_mem_acc_cb.h | 52 …virtual const uint32_t readBytes(const ocsd_vaddr_t address, const ocsd_mem_space_acc_t memSpace, …
|
H A D | trc_mem_acc_base.h | 132 …virtual const uint32_t readBytes(const ocsd_vaddr_t s_address, const ocsd_mem_space_acc_t memSpace…
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLTypeHashing.cpp | 60 cantFail(Reader.readBytes(S, 8)); in fromDebugH()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugChecksumsSubsection.cpp | 44 if (auto EC = Reader.readBytes(Item.Checksum, Header->ChecksumSize)) in operator ()()
|
H A D | CodeViewRecordIO.cpp | 113 if (auto EC = Reader->readBytes(Bytes, Reader->bytesRemaining())) in mapByteVectorTail() 248 if (auto EC = Reader->readBytes(GuidBytes, GuidSize)) in mapGuid()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | CVRecord.h | 105 if (auto EC = Reader.readBytes(RawData, Prefix->RecordLen + sizeof(uint16_t))) in readCVRecordFromStream()
|
H A D | TypeDeserializer.h | 154 if (auto EC = Mapping.Reader.readBytes(CVR.Data, RecordLength)) in visitKnownMemberImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | PDBFile.cpp | 108 if (auto EC = Buffer->readBytes(StreamBlockOffset, NumBytes, Result)) in getBlockData() 157 if (auto EC = FpmReader.readBytes(FpmBytes, FpmReader.bytesRemaining())) in parseFileHeaders()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
H A D | SimpleRemoteEPCUtils.h | 131 Error readBytes(char *Dst, size_t Size, bool *IsEOF = nullptr);
|