HomeSort by relevance Sort by last modified time
    Searched defs:size_ (Results 51 - 75 of 237) sorted by null

1 23 4 5 6 7 8 910

  /bionic/libc/malloc_debug/
RecordData.h 87 size_t size_; member in class:MallocEntry
  /external/brotli/enc/
ringbuffer.h 34 const uint32_t size_; member in struct:RingBuffer
60 *(uint32_t*)&rb->size_ = 1u << window_bits;
63 *(uint32_t*)&rb->total_size_ = rb->size_ + rb->tail_size_;
98 const size_t p = rb->size_ + masked_pos;
126 rb->buffer_[rb->size_ - 2] = 0;
127 rb->buffer_[rb->size_ - 1] = 0;
134 if (BROTLI_PREDICT_TRUE(masked_pos + n <= rb->size_)) {
143 memcpy(&rb->buffer_[0], bytes + (rb->size_ - masked_pos),
144 n - (rb->size_ - masked_pos));
147 rb->buffer_[-2] = rb->buffer_[rb->size_ - 2]
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 34 size_ = 0;
37 bool empty() const { return size_ == 0; }
38 uptr size() const { return size_; }
44 size_ = 1;
49 size_++;
57 size_ = 1;
61 size_++;
70 size_--;
87 size_ += l->size();
101 size_ += l->size()
149 uptr size_; member in struct:__sanitizer::IntrusiveList
    [all...]
  /external/gemmlowp/public/
map.h 91 int size_; member in class:gemmlowp::VectorMap
94 VectorMap() : data_(nullptr), size_(0) {}
95 VectorMap(Scalar* data, int size) : data_(data), size_(size) {}
96 VectorMap(const VectorMap& other) : data_(other.data_), size_(other.size_) {}
98 int size() const { return size_; }
105 assert(start + len <= size_);
120 int size_; member in class:gemmlowp::VectorDup
123 VectorDup() : data_(0), size_(0) {}
124 VectorDup(Scalar data, int size) : data_(data), size_(size) {
    [all...]
  /external/google-breakpad/src/client/
minidump_file_writer.h 137 size_t size_; member in class:google_breakpad::MinidumpFileWriter
161 size_(0) {}
171 inline size_t size() const { return size_; }
175 MDLocationDescriptor location = { static_cast<uint32_t>(size_),
197 size_t size_; member in class:google_breakpad::UntypedMDRVA
  /external/google-breakpad/src/testing/gtest/samples/
sample3-inl.h 77 Queue() : head_(NULL), last_(NULL), size_(0) {}
84 if (size_ > 0) {
97 size_ = 0;
102 size_t Size() const { return size_; }
119 if (size_ == 0) {
121 size_ = 1;
125 size_++;
132 if (size_ == 0) {
138 size_--;
139 if (size_ == 0)
165 size_t size_; \/\/ The number of elements in the queue. member in class:Queue
    [all...]
  /external/googletest/googletest/samples/
sample3-inl.h 77 Queue() : head_(NULL), last_(NULL), size_(0) {}
84 if (size_ > 0) {
97 size_ = 0;
102 size_t Size() const { return size_; }
119 if (size_ == 0) {
121 size_ = 1;
125 size_++;
132 if (size_ == 0) {
138 size_--;
139 if (size_ == 0)
165 size_t size_; \/\/ The number of elements in the queue. member in class:Queue
    [all...]
  /external/libbrillo/brillo/streams/
memory_containers.h 131 : buffer_(buffer), size_(size) {}
139 size_t GetSize() const override { return size_; }
144 size_t size_; member in class:brillo::data_container::ReadOnlyBuffer
  /external/libchrome/base/files/
dir_reader_linux.h 36 size_(0) {
53 if (size_) {
58 if (offset_ != size_)
68 size_ = r;
74 if (!size_)
94 size_t size_; member in class:base::DirReaderLinux
  /external/libchrome/sandbox/win/src/
internal_types.h 33 CountedBuffer(void* buffer, uint32_t size) : size_(size), buffer_(buffer) {}
35 uint32_t Size() const { return size_; }
42 uint32_t size_; member in class:sandbox::CountedBuffer
  /external/libtextclassifier/common/
feature-types.h 154 : FeatureType(name), size_(size) {}
163 FeatureValue GetDomainSize() const override { return size_; }
167 FeatureValue size_; member in class:libtextclassifier::nlp_core::NumericFeatureType
  /external/protobuf/gtest/samples/
sample3-inl.h 78 Queue() : head_(NULL), last_(NULL), size_(0) {}
85 if (size_ > 0) {
98 size_ = 0;
103 size_t Size() const { return size_; }
120 if (size_ == 0) {
122 size_ = 1;
126 size_++;
133 if (size_ == 0) {
139 size_--;
140 if (size_ == 0)
166 size_t size_; \/\/ The number of elements in the queue. member in class:Queue
    [all...]
  /external/regex-re2/util/
sparse_set.h 57 : size_(0), max_size_(0), sparse_to_dense_(NULL), dense_(NULL), valgrind_(RunningOnValgrind()) {}
72 size_ = 0;
83 int size() const { return size_; }
85 iterator end() { return dense_ + size_; }
87 const_iterator end() const { return dense_ + size_; }
92 if (size_ > new_max_size)
93 size_ = new_max_size;
108 memmove(a, dense_, size_*sizeof a[0]);
110 for (int i = size_; i < new_max_size; i++)
125 void clear() { size_ = 0;
168 int size_; member in class:re2::SparseSet
    [all...]
  /external/stressapptest/src/
pattern.h 100 int Size() {return size_;}
105 unsigned int size_; member in class:PatternList
  /external/v4l2_codec2/vda/
rect.h 26 Rect() : x_(0), y_(0), size_(0, 0) {}
27 Rect(int width, int height) : x_(0), y_(0), size_(width, height) {}
29 : x_(x), y_(y), size_(width, height) {}
30 explicit Rect(const Size& size) : x_(0), y_(0), size_(size) {}
38 int width() const { return size_.width(); }
39 void set_width(int width) { size_.set_width(width); }
41 int height() const { return size_.height(); }
42 void set_height(int height) { size_.set_height(height); }
44 const Size& size() const { return size_; }
61 bool IsEmpty() const { return size_.IsEmpty();
77 Size size_; member in class:media::Rect
    [all...]
  /external/v8/src/compiler/
node-cache.h 33 : entries_(nullptr), size_(0), max_(max) {}
53 size_t size_; member in class:v8::internal::compiler::final
  /external/v8/testing/gtest/samples/
sample3-inl.h 77 Queue() : head_(NULL), last_(NULL), size_(0) {}
84 if (size_ > 0) {
97 size_ = 0;
102 size_t Size() const { return size_; }
119 if (size_ == 0) {
121 size_ = 1;
125 size_++;
132 if (size_ == 0) {
138 size_--;
139 if (size_ == 0)
165 size_t size_; \/\/ The number of elements in the queue. member in class:Queue
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample3-inl.h 77 Queue() : head_(NULL), last_(NULL), size_(0) {}
84 if (size_ > 0) {
97 size_ = 0;
102 size_t Size() const { return size_; }
119 if (size_ == 0) {
121 size_ = 1;
125 size_++;
132 if (size_ == 0) {
138 size_--;
139 if (size_ == 0)
165 size_t size_; \/\/ The number of elements in the queue. member in class:Queue
    [all...]
  /external/webrtc/webrtc/base/
buffer.h 92 return size_;
107 size_ = buf.size_;
116 return size_ == buf.size() && memcmp(data_.get(), buf.data(), size_) == 0;
126 size_ = 0;
139 const size_t new_size = size_ + size;
141 std::memcpy(data_.get() + size_, data, size);
142 size_ = new_size;
157 size_ = size
223 size_t size_; member in class:rtc::Buffer
    [all...]
  /external/webrtc/webrtc/common_audio/
wav_header_unittest.cc 23 size_(size),
29 size_(size),
37 EXPECT_EQ(size_, pos_);
42 if (size_ >= kWavHeaderSize)
43 EXPECT_GE(size_, pos_ + num_bytes);
46 const size_t bytes_remaining = size_ - pos_;
61 const size_t size_; member in class:webrtc::ReadableWavBuffer
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_frame.h 31 const DesktopSize& size() const { return size_; }
79 const DesktopSize size_; member in class:webrtc::DesktopFrame
  /frameworks/native/libs/vr/libdisplay/include/private/dvr/
shared_buffer_helpers.h 32 size_t Size() const { return size_; }
43 size_t size_ = 0; member in class:android::dvr::CPUMappedBuffer
120 std::tie(ring, import_ok) = RingType::Import(address_, size_);
128 std::make_unique<RingType>(RingType::Create(address_, size_));
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl_lite.h 81 const int size_; // Total size of the array. member in class:google::protobuf::io::ArrayInputStream
113 const int size_; // Total size of the array. member in class:google::protobuf::io::ArrayOutputStream
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl_lite.h 81 const int size_; // Total size of the array. member in class:google::protobuf::io::ArrayInputStream
113 const int size_; // Total size of the array. member in class:google::protobuf::io::ArrayOutputStream
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl_lite.h 81 const int size_; // Total size of the array. member in class:google::protobuf::io::ArrayInputStream
113 const int size_; // Total size of the array. member in class:google::protobuf::io::ArrayOutputStream

Completed in 7029 milliseconds

1 23 4 5 6 7 8 910