HomeSort by relevance Sort by last modified time
    Searched defs:BytesRead (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Support/
StreamableMemoryObject.h 143 mutable size_t BytesRead; // Bytes read from stream
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/
phFriNfc_DesfireMap.c 627 uint32_t BytesRead = 0;
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 ) &&
    [all...]

Completed in 389 milliseconds