Home
last modified time | relevance | path

Searched refs:bytes_read_ (Results 1 – 9 of 9) sorted by relevance

/external/perfetto/src/tracing/core/
Dtrace_stats.cc179 (bytes_read_ == other.bytes_read_) && in operator ==()
213 static_assert(sizeof(bytes_read_) == sizeof(proto.bytes_read()), in FromProto()
215 bytes_read_ = static_cast<decltype(bytes_read_)>(proto.bytes_read()); in FromProto()
314 static_assert(sizeof(bytes_read_) == sizeof(proto->bytes_read()), in ToProto()
317 static_cast<decltype(proto->bytes_read())>(bytes_read_)); in ToProto()
/external/tensorflow/tensorflow/core/lib/io/
Dzlib_inputstream.cc67 bytes_read_(0) { in ZlibInputStream()
91 bytes_read_ = 0; in Reset()
178 bytes_read_ += can_read_bytes; in ReadBytesFromCache()
223 int64 ZlibInputStream::Tell() const { return bytes_read_; } in Tell()
Dzlib_inputstream.h128 int64 bytes_read_; variable
Dtable_test.cc120 : contents_(contents.data(), contents.size()), bytes_read_(0) {} in StringSource()
140 bytes_read_ += n; in Read()
144 uint64 BytesRead() const { return bytes_read_; } in BytesRead()
148 mutable uint64 bytes_read_; member in tensorflow::table::StringSource
/external/v8/src/
Dunicode-decoder.h72 size_t bytes_read_; variable
96 : bytes_read_(0), chars_written_(0), utf16_length_(0), trailing_(false) {} in Utf8DecoderBase()
130 bytes_read_, trailing_); in WriteUtf16()
Dunicode-decoder.cc64 bytes_read_ = it.Offset(); in Reset()
/external/perfetto/include/perfetto/tracing/core/
Dtrace_stats.h76 uint64_t bytes_read() const { return bytes_read_; } in bytes_read()
77 void set_bytes_read(uint64_t value) { bytes_read_ = value; } in set_bytes_read()
135 uint64_t bytes_read_ = {}; variable
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_linux.h76 int bytes_read_; variable
Dsanitizer_linux.cc741 bytes_read_(0) { in ThreadLister()
760 if ((char *)entry_ >= &buffer_[bytes_read_] && !GetDirectoryEntries()) in GetNextTID()
788 bytes_read_ = internal_getdents(descriptor_, in GetDirectoryEntries()
791 if (internal_iserror(bytes_read_)) { in GetDirectoryEntries()
795 } else if (bytes_read_ == 0) { in GetDirectoryEntries()