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

/external/llvm/include/llvm/Support/
H A DStreamableMemoryObject.h140 mutable size_t BytesRead; // Bytes read from stream member in class:llvm::StreamingMemoryObject
146 // (i.e. BytesRead > Pos). Return true if Pos can be read.
152 while (Pos >= BytesRead) {
153 Bytes.resize(BytesRead + BytesSkipped + kChunkSize);
154 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped],
156 BytesRead += bytes;
158 assert((!ObjectSize || BytesRead >= Pos) &&
160 if (BytesRead <= Pos) { // reached EOF/ran out of bytes
161 ObjectSize = BytesRead;
/external/chromium_org/extensions/browser/
H A Dcontent_verify_job.cc74 void ContentVerifyJob::BytesRead(int count, const char* data) { function in class:extensions::ContentVerifyJob
81 g_test_delegate->BytesRead(hash_reader_->extension_id(), count, data);
179 BytesRead(tmp.size(), string_as_array(&tmp));
/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 ) &&
/external/chromium_org/chrome/browser/task_manager/
H A Dtask_manager.cc1238 // otherwise BytesRead() will attribute the activity to the Browser resource.
1316 void TaskManagerModel::BytesRead(BytesReadParam param) { function in class:TaskManagerModel
1343 BytesRead(param);
1365 BytesRead(*it);

Completed in 2182 milliseconds