Searched defs:BytesRead (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
H A DStreamableMemoryObject.h143 mutable size_t BytesRead; // Bytes read from stream member in class:llvm::StreamingMemoryObject
149 // (i.e. BytesRead > Pos). Return true if Pos can be read.
155 while (Pos >= BytesRead) {
156 Bytes.resize(BytesRead + BytesSkipped + kChunkSize);
157 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped],
159 BytesRead += bytes;
161 if (ObjectSize && BytesRead < Pos)
163 if (BytesRead <= Pos) { // reached EOF/ran out of bytes
164 ObjectSize = BytesRead;
/external/libnfc-nxp/src/
H A DphFriNfc_DesfireMap.c627 uint32_t BytesRead = 0; local
855 BytesRead = phFriNfc_Desfire_HGetLeBytes(NdefMap);
859 if ( (NdefMap->DesfireCapContainer.SkipNlenBytesFlag == 1) && ((BytesRead == 1) || (BytesRead == 2 )))
861 BytesRead += PH_FRINFC_NDEFMAP_DESF_NLEN_SIZE_IN_BYTES; /* to take care of first 2 len bytes*/
870 if ( ( BytesRead == SendRecLen ) &&

Completed in 216 milliseconds