OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BytesRead
(Results
1 - 5
of
5
) sorted by null
/external/llvm/include/llvm/Support/
StreamableMemoryObject.h
145
mutable size_t
BytesRead
; // Bytes read from stream
151
// (i.e.
BytesRead
> Pos). Return true if Pos can be read.
157
while (Pos >=
BytesRead
) {
158
Bytes.resize(
BytesRead
+ BytesSkipped + kChunkSize);
159
size_t bytes = Streamer->GetBytes(&Bytes[
BytesRead
+ BytesSkipped],
161
BytesRead
+= bytes;
163
if (ObjectSize &&
BytesRead
< Pos)
165
if (
BytesRead
<= Pos) { // reached EOF/ran out of bytes
166
ObjectSize =
BytesRead
;
/external/llvm/lib/Support/
StreamableMemoryObject.cpp
100
size_t pos =
BytesRead
+ kChunkSize;
123
if (
BytesRead
< s) return true;
125
BytesRead
-= s;
142
Bytes(kChunkSize), Streamer(streamer),
BytesRead
(0), BytesSkipped(0),
144
BytesRead
= streamer->GetBytes(&Bytes[0], kChunkSize);
/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
...]
/external/chromium/chrome/browser/task_manager/
task_manager.h
386
void
BytesRead
(BytesReadParam param);
task_manager.cc
786
void TaskManagerModel::
BytesRead
(BytesReadParam param) {
818
BytesRead
(param);
860
// resource based on their origin id, otherwise
BytesRead
() will attribute
877
&TaskManagerModel::
BytesRead
,
[
all
...]
Completed in 1130 milliseconds