Searched defs:size_ (Results 1 - 25 of 107) sorted by relevance

12345

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.h32 uptr size_; member in class:__tsan::IgnoreSet
H A Dtsan_mutexset.h47 uptr size_; member in class:__tsan::MutexSet
/external/marisa-trie/lib/marisa/
H A Dmapper.h43 std::size_t size_; member in class:marisa::Mapper
H A Dbitvector.h42 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
H A Dintvector.h35 MARISA_DEBUG_IF(i >= size_, MARISA_PARAM_ERROR);
48 MARISA_DEBUG_IF(i >= size_, MARISA_PARAM_ERROR);
61 MARISA_DEBUG_IF(i >= size_, MARISA_PARAM_ERROR);
72 return size_;
75 return size_ == 0;
79 + sizeof(mask_) + sizeof(size_);
89 UInt32 size_; member in class:marisa::IntVector
H A Dvector.h47 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_
112 UInt32 size_; member in class:marisa::Vector
[all...]
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dmapper.h44 std::size_t size_; member in class:marisa_alpha::Mapper
H A Dbitvector.h42 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
H A Dintvector.h35 MARISA_ALPHA_DEBUG_IF(i >= size_, MARISA_ALPHA_PARAM_ERROR);
48 MARISA_ALPHA_DEBUG_IF(i >= size_, MARISA_ALPHA_PARAM_ERROR);
61 MARISA_ALPHA_DEBUG_IF(i >= size_, MARISA_ALPHA_PARAM_ERROR);
72 return size_;
75 return size_ == 0;
79 + sizeof(mask_) + sizeof(size_);
89 UInt32 size_; member in class:marisa_alpha::IntVector
H A Dvector.h47 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_
112 UInt32 size_; member in class:marisa_alpha::Vector
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dsubstitute.h90 : 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_(strle
134 int size_; member in class:google::protobuf::strings::internal::SubstituteArg
[all...]
/external/v8/src/compiler/
H A Dnode-cache.h21 explicit NodeCache(int max = 256) : entries_(NULL), size_(0), max_(max) {}
39 int32_t size_; member in class:v8::internal::compiler::NodeCache
/external/v8/src/
H A Dprettyprinter.h39 int size_; // output_ size member in class:v8::internal::PrettyPrinter
/external/webrtc/src/system_wrappers/interface/
H A Dlist_wrapper.h103 unsigned int size_; member in class:webrtc::ListWrapper
/external/webrtc/src/system_wrappers/source/
H A Dlist_no_stl.h74 unsigned int size_; member in class:webrtc::ListNoStl
H A Dmap_no_stl.h65 int size_; member in class:webrtc::MapNoStl
/external/ceres-solver/examples/
H A Dfields_of_experts.h101 return size_;
106 return size_ * size_;
131 int size_; member in class:ceres::examples::FieldsOfExperts
H A Dfields_of_experts.cc89 : size_(0), num_filters_(0) {
94 foe_file >> size_; local
96 if (size_ < 0 || num_filters_ < 0) {
126 size_ = 0;
135 size_ = 0;
/external/ceres-solver/include/ceres/
H A Dlocal_parameterization.h146 virtual int GlobalSize() const { return size_; }
147 virtual int LocalSize() const { return size_; }
150 const int size_; member in class:ceres::IdentityParameterization
/external/icu/icu4c/source/common/unicode/
H A Dbytestream.h196 int32_t NumberOfBytesWritten() const { return size_; }
215 int32_t size_; member in class:CheckedArrayByteSink
/external/ceres-solver/internal/ceres/
H A Dblock_structure.h52 Block(int size_, int position_) : size(size_), position(position_) {} argument
/external/deqp/framework/opengl/
H A DgluStrUtil.hpp46 EnumPointerFmt (const deUint32* value_, deUint32 size_, GetEnumNameFunc getName_) : value(value_), size(size_), getName(getName_) {} argument
55 BooleanPointerFmt (const deUint8* value_, deUint32 size_) : value(value_), size(size_) {} argument
/external/google-breakpad/src/client/
H A Dminidump_file_writer.h137 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/processor/
H A Dbasic_code_module.h59 size_(that->size()),
73 size_(size),
85 virtual uint64_t size() const { return size_; }
95 uint64_t size_; member in class:google_breakpad::BasicCodeModule
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample3-inl.h77 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_
165 size_t size_; // The number of elements in the queue. member in class:Queue
[all...]

Completed in 4568 milliseconds

12345