HomeSort by relevance Sort by last modified time
    Searched defs:size_ (Results 76 - 100 of 285) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/base/trace_event/
memory_allocator_dump.h 96 uint64_t GetSize() const { return size_; };
103 uint64_t size_; member in class:base::trace_event::MemoryAllocatorDump
  /external/perfetto/include/perfetto/base/
watchdog_posix.h 106 return buffer_[(position_ + size_ - 1) % size_];
110 size_t size() const { return size_; }
115 size_t size_ = 0; member in class:perfetto::base::Watchdog::WindowedInterval
  /external/perfetto/src/ipc/
buffered_frame_deserializer.cc 54 PERFETTO_DCHECK(size_ == 0);
65 PERFETTO_CHECK(capacity_ > size_);
66 return ReceiveBuffer{buf() + size_, capacity_ - size_};
70 PERFETTO_CHECK(recv_size + size_ <= capacity_);
71 size_ += recv_size;
95 if (size_ < consumed_size + kHeaderSize)
110 if (size_ < consumed_size + next_frame_size) {
127 PERFETTO_DCHECK(consumed_size <= size_);
130 // there is nothing to shift really, just setting size_ = 0 is enough
140 memmove(buf(), move_begin, size_); local
    [all...]
  /external/perfetto/test/
end_to_end_shared_memory_fuzzer.cc 65 size_(size),
88 packet->stream_writer_->WriteBytes(data_, size_);
106 const size_t size_; member in class:perfetto::shm_fuzz::FakeProducer
117 size_(size),
123 size_, on_produced_and_committed_));
130 const size_t size_; member in class:perfetto::shm_fuzz::FakeProducerDelegate
  /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/stressapptest/src/
pattern.h 100 int Size() {return size_;}
105 unsigned int size_; member in class:PatternList
  /external/tensorflow/tensorflow/core/lib/core/
stringpiece.h 45 StringPiece() : data_(nullptr), size_(0) {}
48 StringPiece(const char* d, size_t n) : data_(d), size_(n) {}
51 StringPiece(const string& s) : data_(s.data()), size_(s.size()) {}
54 StringPiece(const char* s) : data_(s), size_(strlen(s)) {}
60 size_t size() const { return size_; }
63 bool empty() const { return size_ == 0; }
68 iterator end() const { return data_ + size_; }
83 size_ -= n;
87 assert(size_ >= n);
88 size_ -= n
129 size_t size_; member in class:tensorflow::StringPiece
    [all...]
  /external/tensorflow/tensorflow/core/lib/io/
format.h 42 uint64 size() const { return size_; }
43 void set_size(uint64 size) { size_ = size; }
53 uint64 size_; member in class:tensorflow::table::BlockHandle
105 : offset_(~static_cast<uint64>(0)), size_(~static_cast<uint64>(0)) {}
  /external/v4l2_codec2/vda/
rect.h 28 Rect() : x_(0), y_(0), size_(0, 0) {}
29 Rect(int width, int height) : x_(0), y_(0), size_(width, height) {}
31 : x_(x), y_(y), size_(width, height) {}
32 explicit Rect(const Size& size) : x_(0), y_(0), size_(size) {}
40 int width() const { return size_.width(); }
41 void set_width(int width) { size_.set_width(width); }
43 int height() const { return size_.height(); }
44 void set_height(int height) { size_.set_height(height); }
46 const Size& size() const { return size_; }
63 bool IsEmpty() const { return size_.IsEmpty();
79 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 3205 milliseconds

1 2 34 5 6 7 8 91011>>