HomeSort by relevance Sort by last modified time
    Searched refs:size_ (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /external/compiler-rt/lib/tsan/rtl/
tsan_mutexset.cc 21 size_ = 0;
27 for (uptr i = 0; i < size_; i++) {
35 if (size_ == kMaxSize) {
38 for (uptr i = 0; i < size_; i++) {
45 CHECK_EQ(size_, kMaxSize - 1);
48 descs_[size_].id = id;
49 descs_[size_].write = write;
50 descs_[size_].epoch = epoch;
51 descs_[size_].count = 1;
52 size_++
    [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/openfst/src/include/fst/
heap.h 57 Heap(Compare comp) : comp_(comp), size_(0) { }
60 Heap() : size_(0) { }
66 if (size_ < A_.size()) {
67 A_[size_] = val;
68 pos_[key_[size_]] = size_;
71 pos_.push_back(size_);
72 key_.push_back(size_);
75 ++size_;
76 return Insert(val, size_ - 1)
199 int size_; member in class:fst::Heap
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 51 Heap(Compare comp) : comp_(comp), size_(0) { }
54 Heap() : size_(0) { }
60 if (size_ < (int)A_.size()) {
61 A_[size_] = val;
62 pos_[key_[size_]] = size_;
65 pos_.push_back(size_);
66 key_.push_back(size_);
69 ++size_;
70 return Insert(val, size_ - 1)
187 int size_; member in class:fst::Heap
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
native_frame.cpp 22 NativeFrame::NativeFrame(int size) : data_(NULL), size_(size), capacity_(size) {
31 if (size_ >= (offset + size)) {
40 size_ = capacity_ = size;
46 NativeFrame* result = new NativeFrame(size_);
48 result->WriteData(data_, 0, size_);
54 size_ = newSize;
vertex_frame.cpp 34 size_(size) {
59 if (first_upload && size == size_)
61 else if (!first_upload && size <= size_)
65 "inside the vertex frame (%d bytes)!", size, size_);
74 size_ = size;
80 return size_;
native_frame.h 58 return size_;
74 int size_; member in class:android::filterfw::NativeFrame
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 31 size_ = 0;
34 bool empty() const { return size_ == 0; }
35 uptr size() const { return size_; }
41 size_ = 1;
46 size_++;
54 size_ = 1;
58 size_++;
67 size_--;
82 size_ += l->size();
96 size_ += l->size()
117 uptr size_; member in struct:__sanitizer::IntrusiveList
    [all...]
  /external/marisa-trie/lib/marisa/
vector.h 47 return objs_ + size_;
50 MARISA_DEBUG_IF(i > size_, MARISA_PARAM_ERROR);
54 MARISA_DEBUG_IF(size_ == 0, MARISA_STATE_ERROR);
58 MARISA_DEBUG_IF(size_ == 0, MARISA_STATE_ERROR);
59 return objs_[size_ - 1];
68 return buf_ + size_;
72 MARISA_DEBUG_IF(i > size_, MARISA_PARAM_ERROR);
76 MARISA_DEBUG_IF(fixed_ || (size_ == 0), MARISA_STATE_ERROR);
80 MARISA_DEBUG_IF(fixed_ || (size_ == 0), MARISA_STATE_ERROR);
81 return buf_[size_ - 1]
112 UInt32 size_; member in class:marisa::Vector
    [all...]
bitvector.h 42 MARISA_THROW_IF(size_ == max_size(), MARISA_SIZE_ERROR);
43 if ((size_ % 32) == 0) {
47 blocks_.back() |= 1U << (size_ % 32);
49 ++size_;
53 MARISA_DEBUG_IF(i >= size_, MARISA_PARAM_ERROR);
58 MARISA_DEBUG_IF(i > size_, MARISA_PARAM_ERROR);
67 return size_;
76 return blocks_.total_size() + sizeof(size_) + ranks_.total_size()
85 UInt32 size_; member in class:marisa::BitVector
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
vector.h 47 return objs_ + size_;
50 MARISA_ALPHA_DEBUG_IF(i > size_, MARISA_ALPHA_PARAM_ERROR);
54 MARISA_ALPHA_DEBUG_IF(size_ == 0, MARISA_ALPHA_STATE_ERROR);
58 MARISA_ALPHA_DEBUG_IF(size_ == 0, MARISA_ALPHA_STATE_ERROR);
59 return objs_[size_ - 1];
68 return buf_ + size_;
72 MARISA_ALPHA_DEBUG_IF(i > size_, MARISA_ALPHA_PARAM_ERROR);
76 MARISA_ALPHA_DEBUG_IF(fixed_ || (size_ == 0), MARISA_ALPHA_STATE_ERROR);
80 MARISA_ALPHA_DEBUG_IF(fixed_ || (size_ == 0), MARISA_ALPHA_STATE_ERROR);
81 return buf_[size_ - 1]
112 UInt32 size_; member in class:marisa_alpha::Vector
    [all...]
bitvector.h 42 MARISA_ALPHA_THROW_IF(size_ == max_size(), MARISA_ALPHA_SIZE_ERROR);
43 if ((size_ % 32) == 0) {
47 blocks_.back() |= 1U << (size_ % 32);
49 ++size_;
53 MARISA_ALPHA_DEBUG_IF(i >= size_, MARISA_ALPHA_PARAM_ERROR);
58 MARISA_ALPHA_DEBUG_IF(i > size_, MARISA_ALPHA_PARAM_ERROR);
67 return size_;
76 return blocks_.total_size() + sizeof(size_) + ranks_.total_size()
85 UInt32 size_; member in class:marisa_alpha::BitVector
  /external/chromium/testing/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/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/libvpx/libvpx/third_party/googletest/src/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/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/icu4c/common/
bytestream.cpp 31 size_(0), appended_(0), overflowed_(FALSE) {
37 size_ = appended_ = 0;
47 int32_t available = capacity_ - size_;
52 if (n > 0 && bytes != (outbuf_ + size_)) {
53 uprv_memcpy(outbuf_ + size_, bytes, n);
55 size_ += n;
67 int32_t available = capacity_ - size_;
70 return outbuf_ + size_;
  /bionic/libc/bionic/
scandir.cpp 27 ScandirResult() : names_(NULL), size_(0), capacity_(0) {
31 while (size_ > 0) {
32 free(names_[--size_]);
38 return size_;
44 size_ = capacity_ = 0;
49 if (size_ >= capacity_) {
63 names_[size_++] = copy;
69 if (size_ > 0 && comparator != NULL) {
70 qsort(names_, size_, sizeof(dirent*), (int (*)(const void*, const void*)) comparator);
76 size_t size_; member in class:ScandirResult
    [all...]
  /external/qemu/elff/
elf_mapped_section.cc 24 size_(0) {
29 mapfile_unmap(mapped_at_, diff_ptr(mapped_at_, data_) + size_);
45 size_ = (Elf_Word)mapped_bytes;
elf_mapped_section.h 65 return size_;
86 Elf_Word size_; member in class:ElfMappedSection
  /ndk/sources/host-tools/ndk-stack/elff/
elf_mapped_section.cc 24 size_(0) {
29 mapfile_unmap(mapped_at_, diff_ptr(mapped_at_, data_) + size_);
45 size_ = (Elf_Word)mapped_bytes;
elf_mapped_section.h 65 return size_;
86 Elf_Word size_; member in class:ElfMappedSection
  /external/protobuf/src/google/protobuf/stubs/
substitute.h 90 : text_(value), size_(strlen(text_)) {}
92 : text_(value.data()), size_(value.size()) {}
96 : text_(NULL), size_(-1) {}
105 : text_(scratch_), size_(1) { scratch_[0] = value; }
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
109 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
111 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
113 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
115 : text_(FastLongToBuffer(value, scratch_)), size_(strlen(text_)) {}
117 : text_(FastULongToBuffer(value, scratch_)), size_(strlen(text_)) {
134 int size_; member in class:google::protobuf::strings::internal::SubstituteArg
    [all...]
  /external/ceres-solver/examples/
fields_of_experts.h 101 return size_;
106 return size_ * size_;
131 int size_; member in class:ceres::examples::FieldsOfExperts
  /external/chromium/base/
dir_reader_linux.h 35 size_(0) {
51 if (size_) {
56 if (offset_ != size_)
66 size_ = r;
72 if (!size_)
91 size_t offset_, size_; member in class:base::DirReaderLinux

Completed in 3054 milliseconds

1 2 3 4 5 6 7