Home
last modified time | relevance | path

Searched refs:readBytes (Results 1 – 25 of 37) sorted by relevance

12

/freebsd-13.1/contrib/opencsd/decoder/source/mem_acc/
H A Dtrc_mem_acc_mapper.cpp81 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()
108readBytes = 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 Dtrc_mem_acc_cb.cpp22 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 Dtrc_mem_acc_bufptr.cpp44 const uint32_t TrcMemAccBufPtr::readBytes(const ocsd_vaddr_t address, const ocsd_mem_space_acc_t me… in readBytes() function in TrcMemAccBufPtr
H A Dtrc_mem_acc_cache.cpp94 …m_mru[m_mru_idx].valid_len = p_accessor->readBytes(address, mem_space, trcID, MEM_ACC_CACHE_PAGE_S… in readBytesFromCache()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamRef.cpp24 Error readBytes(uint32_t Offset, uint32_t Size, in readBytes() function in __anon8926229e0111::ArrayRefImpl
26 return BBS.readBytes(Offset, Size, Buffer); in readBytes()
47 Error readBytes(uint32_t Offset, uint32_t Size, in readBytes() function in __anon8926229e0111::MutableArrayRefImpl
49 return BBS.readBytes(Offset, Size, Buffer); in readBytes()
79 Error BinaryStreamRef::readBytes(uint32_t Offset, uint32_t Size, in readBytes() function in BinaryStreamRef
83 return BorrowedImpl->readBytes(ViewOffset + Offset, Size, Buffer); in readBytes()
H A DBinaryStreamReader.cpp37 Error BinaryStreamReader::readBytes(ArrayRef<uint8_t> &Buffer, uint32_t Size) { in readBytes() function in BinaryStreamReader
38 if (auto EC = Stream.readBytes(Offset, Size, Buffer)) in readBytes()
50 if (auto Err = readBytes(NextByte, 1)) in readULEB128()
65 if (auto Err = readBytes(NextByte, 1)) in readSLEB128()
124 if (auto EC = readBytes(Bytes, Length)) in readFixedString()
162 auto EC = Stream.readBytes(Offset, 1, Buffer); in peek()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryByteStream.h41 Error readBytes(uint32_t Offset, uint32_t Size, in readBytes() function
100 Error readBytes(uint32_t Offset, uint32_t Size, in readBytes() function
102 return ImmutableStream.readBytes(Offset, Size, Buffer); in readBytes()
148 Error readBytes(uint32_t Offset, uint32_t Size, in readBytes() function
243 Error readBytes(uint32_t Offset, uint32_t Size, in readBytes() function
245 return Impl.readBytes(Offset, Size, Buffer); in readBytes()
H A DBinaryStreamReader.h66 Error readBytes(ArrayRef<uint8_t> &Buffer, uint32_t Size);
80 if (auto EC = readBytes(Bytes, sizeof(T))) in readInteger()
171 if (auto EC = readBytes(Buffer, sizeof(T))) in readObject()
198 if (auto EC = readBytes(Bytes, NumElements * sizeof(T))) in readArray()
H A DBinaryStream.h44 virtual Error readBytes(uint32_t Offset, uint32_t Size,
H A DBinaryItemStream.h41 Error readBytes(uint32_t Offset, uint32_t Size, in readBytes() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp88 Error MappedBlockStream::readBytes(uint32_t Offset, uint32_t Size, in readBytes() function in MappedBlockStream
152 if (auto EC = readBytes(Offset, MutableArrayRef<uint8_t>(WriteBuffer, Size))) in readBytes()
188 if (auto EC = MsfData.readBytes(MsfOffset, BlockSize, BlockData)) in readLongestContiguousChunk()
230 if (auto EC = MsfData.readBytes(MsfOffset, BlockSize, BlockData)) { in tryReadContiguously()
239 Error MappedBlockStream::readBytes(uint32_t Offset, in readBytes() function in MappedBlockStream
256 if (auto EC = MsfData.readBytes(Offset, BlockSize, BlockData)) in readBytes()
373 Error WritableMappedBlockStream::readBytes(uint32_t Offset, uint32_t Size, in readBytes() function in WritableMappedBlockStream
375 return ReadInterface.readBytes(Offset, Size, Buffer); in readBytes()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DRawByteChannel.h31 virtual Error readBytes(char *Dst, unsigned Size) = 0;
104 if (auto Err = C.readBytes(reinterpret_cast<char *>(&V), sizeof(T))) in deserialize()
125 if (auto Err = C.readBytes(reinterpret_cast<char *>(&Tmp), 1)) in deserialize()
175 return C.readBytes(&S[0], Count); in deserialize()
H A DFDRawByteChannel.h33 llvm::Error readBytes(char *Dst, unsigned Size) override { in readBytes() function
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h61 Error readBytes(uint32_t Offset, uint32_t Size,
84 Error readBytes(uint32_t Offset, MutableArrayRef<uint8_t> Buffer);
128 Error readBytes(uint32_t Offset, uint32_t Size,
/freebsd-13.1/contrib/opencsd/decoder/include/mem_acc/
H A Dtrc_mem_acc_file.h59 …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 Dtrc_mem_acc_cb_if.h66 …virtual const uint32_t readBytes(const ocsd_vaddr_t s_address, const ocsd_mem_space_acc_t memSpace…
H A Dtrc_mem_acc_bufptr.h67 …virtual const uint32_t readBytes(const ocsd_vaddr_t address, const ocsd_mem_space_acc_t memSpace, …
H A Dtrc_mem_acc_cb.h52 …virtual const uint32_t readBytes(const ocsd_vaddr_t address, const ocsd_mem_space_acc_t memSpace, …
H A Dtrc_mem_acc_base.h132 …virtual const uint32_t readBytes(const ocsd_vaddr_t s_address, const ocsd_mem_space_acc_t memSpace…
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypeHashing.cpp60 cantFail(Reader.readBytes(S, 8)); in fromDebugH()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugChecksumsSubsection.cpp44 if (auto EC = Reader.readBytes(Item.Checksum, Header->ChecksumSize)) in operator ()()
H A DCodeViewRecordIO.cpp110 if (auto EC = Reader->readBytes(Bytes, Reader->bytesRemaining())) in mapByteVectorTail()
245 if (auto EC = Reader->readBytes(GuidBytes, GuidSize)) in mapGuid()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCVRecord.h106 if (auto EC = Reader.readBytes(RawData, Prefix->RecordLen + sizeof(uint16_t))) in readCVRecordFromStream()
H A DTypeDeserializer.h154 if (auto EC = Mapping.Reader.readBytes(CVR.Data, RecordLength)) in visitKnownMemberImpl()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp110 if (auto EC = Buffer->readBytes(StreamBlockOffset, NumBytes, Result)) in getBlockData()
159 if (auto EC = FpmReader.readBytes(FpmBytes, FpmReader.bytesRemaining())) in parseFileHeaders()

12