HomeSort by relevance Sort by last modified time
    Searched refs:length_ (Results 26 - 50 of 186) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/third_party/webrtc/base/
buffer.h 40 size_t length() const { return length_; }
50 return (length_ == buf.length() &&
51 memcmp(data_.get(), buf.data(), length_) == 0);
64 size_t old_length = length_;
65 SetLength(length_ + length);
70 length_ = length;
75 memcpy(data.get(), data_.get(), length_);
84 buf->length_ = length_;
96 size_t length_; member in class:rtc::Buffer
    [all...]
cryptstring.h 81 length_ = 0;
90 EnsureStorage(length_ + length + 1);
91 memcpy(storage_ + length_, data, length);
92 length_ += length;
93 storage_[length_] = '\0';
98 EnsureStorage(length_ + len + 1);
99 password->CopyTo(storage_ + length_, true);
100 length_ += len;
104 return length_;
130 memcpy(storage_, old_storage, length_);
153 size_t length_; member in class:rtc::FormatCryptString
    [all...]
  /external/chromium_org/v8/src/
snapshot-source-sink.h 25 bool HasMore() { return position_ < length_; }
28 DCHECK(position_ < length_);
59 int length_;
88 DummySnapshotSink() : length_(0) {}
90 virtual void Put(byte b, const char* description) { length_++; }
91 virtual int Position() { return length_; }
94 int length_;
list-inl.h 18 if (length_ < capacity_) {
19 data_[length_++] = element;
34 int result_length = length_ + other.length();
37 data_[length_ + i] = other.at(i);
39 length_ = result_length;
53 DCHECK(length_ >= capacity_);
61 data_[length_++] = temp;
67 DCHECK_LE(length_, new_capacity);
69 MemCopy(new_data, data_, length_ * sizeof(T));
78 int start = length_;
    [all...]
snapshot-source-sink.cc 18 : data_(array), length_(length), position_(0) {
26 DCHECK(position_ < length_); // Require at least one byte left.
68 if (0u + length_ - position_ > 2 * sizeof(uint32_t)) return false;
69 for (int x = position_; x < length_; x++) {
80 if (position_ + size < length_) {
85 Advance(length_ - position_); // proceed until end.
list.h 66 SLOW_DCHECK(i < length_);
70 inline T& last() const { return at(length_ - 1); }
75 inline iterator end() const { return &data_[length_]; }
77 INLINE(bool is_empty() const) { return length_ == 0; }
78 INLINE(int length() const) { return length_; }
81 Vector<T> ToVector() const { return Vector<T>(data_, length_); }
83 Vector<const T> ToConstVector() { return Vector<const T>(data_, length_); }
122 INLINE(T RemoveLast()) { return Remove(length_ - 1); }
136 INLINE(void RewindBy(int count)) { Rewind(length_ - count); }
159 int length_;
    [all...]
  /art/runtime/verifier/
instruction_flags.h 30 InstructionFlags() : length_(0), flags_(0) {}
34 length_ = length;
37 return length_;
40 return length_ != 0;
131 uint16_t length_; member in class:art::verifier::InstructionFlags
  /external/chromium_org/base/files/
memory_mapped_file_posix.cc 16 MemoryMappedFile::MemoryMappedFile() : data_(NULL), length_(0) {
34 length_ = map_size;
60 length_ = static_cast<size_t>(region.size);
82 munmap(data_, length_);
86 length_ = 0;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
bitmap_glyph_info.cc 30 length_(length),
42 length_(length),
49 length_ == rhs.length_ &&
59 length_ == rhs->length() &&
  /external/sfntly/cpp/src/sfntly/table/bitmap/
bitmap_glyph_info.cc 30 length_(length),
42 length_(length),
49 length_ == rhs.length_ &&
59 length_ == rhs->length() &&
  /external/chromium_org/base/strings/
string_piece.h 180 BasicStringPiece() : ptr_(NULL), length_(0) {}
183 length_((str == NULL) ? 0 : STRING_TYPE::traits_type::length(str)) {}
185 : ptr_(str.data()), length_(str.size()) {}
187 : ptr_(offset), length_(len) {}
191 length_((end > begin) ? (size_type)(end - begin) : 0) {}
198 size_type size() const { return length_; }
199 size_type length() const { return length_; }
200 bool empty() const { return length_ == 0; }
204 length_ = 0;
208 length_ = len
350 size_type length_; member in class:base::BasicStringPiece
    [all...]
  /external/chromium_org/net/spdy/
spdy_frame_builder.cc 38 length_(0),
50 return buffer_.get() + offset_ + length_;
58 length_ += length;
109 if (length_ > 0) {
111 OverwriteLength(framer, length_ - framer.GetPrefixLength(type));
112 DLOG_IF(DFATAL, SpdyConstants::GetFrameMaximumSize(version_) < length_)
113 << "Frame length " << length_
117 offset_ += length_;
118 length_ = 0;
129 DCHECK_EQ(framer.GetDataFrameMinimumSize(), length_);
    [all...]
spdy_frame_builder.h 37 size_t length() const { return offset_ + length_; }
77 DLOG_IF(DFATAL, SpdyConstants::GetFrameMaximumSize(version_) < length_)
78 << "Frame length " << length_
83 length_ = 0;
144 size_t length_; // Length of the latest frame in the buffer. member in class:net::SpdyFrameBuilder
  /external/chromium_org/chrome/utility/media_galleries/
pmp_column_reader.cc 24 : length_(0),
41 length_ = info.size;
43 if (length_ < kPmpHeaderSize || length_ > kPmpMaxFilesize)
46 data_.reset(new uint8[length_]);
50 DCHECK(length_ < kint32max); // ReadFile expects an int.
52 bool success = file->Read(0, data_begin, length_) &&
120 DCHECK_GE(length_, kPmpHeaderSize);
150 DCHECK_GE(length_, kPmpHeaderSize);
151 int64 body_length = length_ - kPmpHeaderSize
    [all...]
  /external/chromium_org/components/cronet/android/
wrapped_channel_upload_element_reader.cc 17 : length_(length), offset_(0), delegate_(delegate) {
29 return length_;
33 return length_ - offset_;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
header.cc 28 length_(0),
38 length_(length),
48 length_(length),
  /external/sfntly/cpp/src/sfntly/table/
header.cc 28 length_(0),
38 length_(length),
48 length_(length),
  /external/chromium_org/chrome/test/logging/win/
mof_data_parser.cc 11 length_(event->MofLength) {
16 const uint8* const str_end = str_scan + length_;
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-string.h 192 String() : c_str_(NULL), length_(0) {}
198 length_ = 0;
214 String(const String& str) : c_str_(NULL), length_(0) { *this = str; }
270 size_t length() const { return length_; }
288 length_ = 0;
307 length_ = a_length;
311 size_t length_; member in class:testing::internal::String
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
memory_input_stream.cc 33 length_(0) {
41 return length_ - position_;
63 if (position_ >= length_) {
85 if (position_ >= length_) {
91 size_t read_count = std::min<size_t>(length_ - position_, length);
116 skip_count = std::min<size_t>(length_ - position_, (size_t)n);
145 length_ = length;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-string.h 192 String() : c_str_(NULL), length_(0) {}
198 length_ = 0;
214 String(const String& str) : c_str_(NULL), length_(0) { *this = str; }
270 size_t length() const { return length_; }
288 length_ = 0;
307 length_ = a_length;
311 size_t length_; member in class:testing::internal::String
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-string.h 192 String() : c_str_(NULL), length_(0) {}
198 length_ = 0;
214 String(const String& str) : c_str_(NULL), length_(0) { *this = str; }
270 size_t length() const { return length_; }
288 length_ = 0;
307 length_ = a_length;
311 size_t length_; member in class:testing::internal::String
  /external/protobuf/gtest/include/gtest/internal/
gtest-string.h 190 String() : c_str_(NULL), length_(0) {}
196 length_ = 0;
212 String(const String& str) : c_str_(NULL), length_(0) { *this = str; }
270 size_t length() const { return length_; }
286 length_ = 0;
305 length_ = length;
309 size_t length_; member in class:testing::internal::String
  /external/sfntly/cpp/src/sfntly/port/
memory_input_stream.cc 31 length_(0) {
39 return length_ - position_;
61 if (position_ >= length_) {
83 if (position_ >= length_) {
89 size_t read_count = std::min<size_t>(length_ - position_, length);
114 skip_count = std::min<size_t>(length_ - position_, (size_t)n);
143 length_ = length;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
thread_cache.h 142 uint32_t length_; // Current length. member in class:tcmalloc::ThreadCache::FreeList
146 // length_ > max_length_. After the kMaxOverages'th time, max_length_
151 uint16_t length_; member in class:tcmalloc::ThreadCache::FreeList
160 length_ = 0;
168 return length_;
198 void clear_lowwatermark() { lowater_ = length_; }
202 length_++;
207 length_--;
208 if (length_ < lowater_) lowater_ = length_;
    [all...]

Completed in 720 milliseconds

12 3 4 5 6 7 8