/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | hash_map.hpp | 71 return values_.begin(); in begin() 77 return values_.begin(); in begin() 83 return values_.end(); in end() 89 return values_.end(); in end() 95 return values_.empty(); in empty() 105 if (it == values_.end()) in find() 106 return values_.end(); in find() 116 return values_.end(); in find() 126 if (it == values_.end()) in find() 137 return values_.end(); in find() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
D | basic_resolver_iterator.hpp | 82 iter.values_.reset(new values_type); in create() 94 iter.values_->push_back( in create() 110 iter.values_.reset(new values_type); in create() 111 iter.values_->push_back( in create() 126 iter.values_.reset(new values_type); in create() 129 iter.values_->push_back( in create() 182 if (++index_ == values_->size()) in increment() 185 values_.reset(); in increment() 192 if (!values_ && !other.values_) in equal() 194 if (values_ != other.values_) in equal() [all …]
|
/external/ceres-solver/internal/ceres/ |
D | triplet_sparse_matrix.cc | 51 values_(NULL) {} in TripletSparseMatrix() 64 values_(NULL) { in TripletSparseMatrix() 80 values_(NULL) { in TripletSparseMatrix() 120 new_values[i] = values_[i]; in Reserve() 125 values_.reset(new_values); in Reserve() 131 fill(values_.get(), values_.get() + max_num_nonzeros_, 0.0); in SetZero() 144 values_.reset(new double[max_num_nonzeros_]); in AllocateMemory() 151 values_[i] = orig.values_[i]; in CopyData() 157 y[rows_[i]] += values_[i]*x[cols_[i]]; in RightMultiply() 163 y[cols_[i]] += values_[i]*x[rows_[i]]; in LeftMultiply() [all …]
|
D | compressed_row_sparse_matrix.cc | 79 values_.resize(max_num_nonzeros, 0.0); in CompressedRowSparseMatrix() 97 values_.resize(m.max_num_nonzeros(), 0.0); in CompressedRowSparseMatrix() 123 values_[i] = m.values()[idx]; in CompressedRowSparseMatrix() 142 values_.resize(num_rows); in CompressedRowSparseMatrix() 147 values_[i] = diagonal[i]; in CompressedRowSparseMatrix() 158 fill(values_.begin(), values_.end(), 0); in SetZero() 168 y[r] += values_[idx] * x[cols_[idx]]; in RightMultiply() 179 y[cols_[idx]] += values_[idx] * x[r]; in LeftMultiply() 189 x[cols_[idx]] += values_[idx] * values_[idx]; in SquaredColumnNorm() 197 values_[idx] *= scale[cols_[idx]]; in ScaleColumns() [all …]
|
D | block_sparse_matrix.cc | 52 values_(NULL), in BlockSparseMatrix() 80 values_.reset(new double[num_nonzeros_]); in BlockSparseMatrix() 81 CHECK_NOTNULL(values_.get()); in BlockSparseMatrix() 85 fill(values_.get(), values_.get() + num_nonzeros_, 0.0); in SetZero() 101 values_.get() + cells[j].position, row_block_size, col_block_size, in RightMultiply() 121 values_.get() + cells[j].position, row_block_size, col_block_size, in LeftMultiply() 138 const MatrixRef m(values_.get() + cells[j].position, in SquaredColumnNorm() 155 MatrixRef m(values_.get() + cells[j].position, in ScaleColumns() 179 += MatrixRef(values_.get() + jac_pos, row_block_size, col_block_size); in ToDenseMatrix() 205 matrix->mutable_values()[jac_pos] = values_[jac_pos]; in ToTripletSparseMatrix() [all …]
|
D | block_random_access_dense_matrix.h | 83 const double* values() const { return values_.get(); } in values() 84 double* mutable_values() { return values_.get(); } in mutable_values() 89 scoped_array<double> values_; variable
|
D | block_sparse_matrix.h | 81 virtual const double* values() const { return values_.get(); } in values() 82 virtual double* mutable_values() { return values_.get(); } in mutable_values() 92 scoped_array<double> values_; variable
|
D | block_random_access_dense_matrix.cc | 51 values_.reset(new double[num_rows_ * num_rows_]); in BlockRandomAccessDenseMatrix() 55 cell_infos_[i].values = values_.get(); in BlockRandomAccessDenseMatrix() 83 VectorRef(values_.get(), num_rows_ * num_rows_).setZero(); in SetZero()
|
D | triplet_sparse_matrix.h | 67 virtual const double* values() const { return values_.get(); } in values() 68 virtual double* mutable_values() { return values_.get(); } in mutable_values() 123 scoped_array<double> values_; variable
|
D | compressed_row_sparse_matrix.h | 92 virtual const double* values() const { return &values_[0]; } in values() 93 virtual double* mutable_values() { return &values_[0]; } in mutable_values() 165 vector<double> values_; variable
|
/external/v8/src/ |
D | identity-map.cc | 24 return index >= 0 ? &values_[index] : nullptr; in Lookup() 31 return &values_[index]; in Insert() 93 values_ = zone_->NewArray<void*>(size_); in GetEntry() 94 memset(values_, 0, sizeof(void*) * size_); in GetEntry() 143 reinsert.push_back(std::pair<Object*, void*>(keys_[i], values_[i])); in Rehash() 145 values_[i] = nullptr; in Rehash() 154 DCHECK_NE(heap_->not_mapped_symbol(), values_[index]); in Rehash() 155 values_[index] = pair.second; in Rehash() 164 void** old_values = values_; in Resize() 175 values_ = zone_->NewArray<void*>(size_); in Resize() [all …]
|
D | identity-map.h | 34 values_(nullptr) {} in IdentityMapBase() 56 void** values_; variable
|
D | arguments.h | 110 v->VisitPointers(values_, values_ + kArrayLength); in IterateInstance() 113 inline Object** begin() { return values_; } in begin() 116 Object* values_[kArrayLength]; variable
|
/external/v8/test/cctest/compiler/ |
D | test-gap-resolver.cc | 26 return values_ == other.values_; in operator ==() 30 return values_ != other.values_; in operator !=() 64 OperandMap::const_iterator it = values_.find(KeyFor(op)); in read() 65 return (it == values_.end()) ? ValueFor(op) : it->second; in read() 70 values_.erase(KeyFor(op)); in write() 72 values_[KeyFor(op)] = v; in write() 113 for (OperandMap::const_iterator it = is.values_.begin(); in operator <<() 114 it != is.values_.end(); ++it) { in operator <<() 115 if (it != is.values_.begin()) os << " "; in operator <<() 127 OperandMap values_; member in v8::internal::compiler::InterpreterState
|
/external/v8/src/ast/ |
D | ast-value-factory.cc | 268 for (int i = 0; i < values_.length(); ++i) { in Internalize() 269 values_[i]->Internalize(isolate); in Internalize() 281 values_.Add(value); in NewString() 291 values_.Add(value); in NewSymbol() 301 values_.Add(value); in NewNumber() 312 values_.Add(value); in NewSmi() 323 values_.Add(value); \
|
/external/protobuf/gtest/test/ |
D | gtest_unittest.cc | 2662 values_.close_to_positive_zero = Floating::ReinterpretBits( in SetUp() 2664 values_.close_to_negative_zero = -Floating::ReinterpretBits( in SetUp() 2666 values_.further_from_negative_zero = -Floating::ReinterpretBits( in SetUp() 2673 values_.close_to_one = Floating::ReinterpretBits(one_bits + max_ulps); in SetUp() 2674 values_.further_from_one = Floating::ReinterpretBits( in SetUp() 2678 values_.infinity = Floating::Infinity(); in SetUp() 2681 const Bits infinity_bits = Floating(values_.infinity).bits(); in SetUp() 2684 values_.close_to_infinity = Floating::ReinterpretBits( in SetUp() 2686 values_.further_from_infinity = Floating::ReinterpretBits( in SetUp() 2692 values_.nan1 = Floating::ReinterpretBits(Floating::kExponentBitMask in SetUp() [all …]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
D | gtest_unittest.cc | 2691 values_.close_to_positive_zero = Floating::ReinterpretBits( in SetUp() 2693 values_.close_to_negative_zero = -Floating::ReinterpretBits( in SetUp() 2695 values_.further_from_negative_zero = -Floating::ReinterpretBits( in SetUp() 2702 values_.close_to_one = Floating::ReinterpretBits(one_bits + max_ulps); in SetUp() 2703 values_.further_from_one = Floating::ReinterpretBits( in SetUp() 2707 values_.infinity = Floating::Infinity(); in SetUp() 2710 const Bits infinity_bits = Floating(values_.infinity).bits(); in SetUp() 2713 values_.close_to_infinity = Floating::ReinterpretBits( in SetUp() 2715 values_.further_from_infinity = Floating::ReinterpretBits( in SetUp() 2721 values_.nan1 = Floating::ReinterpretBits(Floating::kExponentBitMask in SetUp() [all …]
|
/external/gtest/test/ |
D | gtest_unittest.cc | 2691 values_.close_to_positive_zero = Floating::ReinterpretBits( in SetUp() 2693 values_.close_to_negative_zero = -Floating::ReinterpretBits( in SetUp() 2695 values_.further_from_negative_zero = -Floating::ReinterpretBits( in SetUp() 2702 values_.close_to_one = Floating::ReinterpretBits(one_bits + max_ulps); in SetUp() 2703 values_.further_from_one = Floating::ReinterpretBits( in SetUp() 2707 values_.infinity = Floating::Infinity(); in SetUp() 2710 const Bits infinity_bits = Floating(values_.infinity).bits(); in SetUp() 2713 values_.close_to_infinity = Floating::ReinterpretBits( in SetUp() 2715 values_.further_from_infinity = Floating::ReinterpretBits( in SetUp() 2721 values_.nan1 = Floating::ReinterpretBits(Floating::kExponentBitMask in SetUp() [all …]
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest_unittest.cc | 2836 values_.close_to_positive_zero = Floating::ReinterpretBits( in SetUp() 2838 values_.close_to_negative_zero = -Floating::ReinterpretBits( in SetUp() 2840 values_.further_from_negative_zero = -Floating::ReinterpretBits( in SetUp() 2847 values_.close_to_one = Floating::ReinterpretBits(one_bits + max_ulps); in SetUp() 2848 values_.further_from_one = Floating::ReinterpretBits( in SetUp() 2852 values_.infinity = Floating::Infinity(); in SetUp() 2855 const Bits infinity_bits = Floating(values_.infinity).bits(); in SetUp() 2858 values_.close_to_infinity = Floating::ReinterpretBits( in SetUp() 2860 values_.further_from_infinity = Floating::ReinterpretBits( in SetUp() 2866 values_.nan1 = Floating::ReinterpretBits(Floating::kExponentBitMask in SetUp() [all …]
|
/external/webrtc/talk/app/webrtc/ |
D | statstypes.cc | 674 values_[name] = ValuePtr(new Value(name, value)); in AddString() 681 values_[name] = ValuePtr(new Value(name, value)); in AddString() 687 values_[name] = ValuePtr(new Value(name, value, Value::kInt64)); in AddInt64() 693 values_[name] = ValuePtr(new Value(name, value, Value::kInt)); in AddInt() 699 values_[name] = ValuePtr(new Value(name, value)); in AddFloat() 705 values_[name] = ValuePtr(new Value(name, value)); in AddBoolean() 712 values_[name] = ValuePtr(new Value(name, value)); in AddId() 716 Values::const_iterator it = values_.find(name); in FindValue() 717 return it == values_.end() ? nullptr : it->second.get(); in FindValue()
|
D | statstypes.h | 352 bool empty() const { return values_.empty(); } in empty() 353 const Values& values() const { return values_; } in values() 373 Values values_; variable
|
/external/drm_hwcomposer/ |
D | drmproperty.cpp | 47 values_.push_back(p->values[i]); in Init() 79 if (values_.size() == 0) in value()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/ |
D | messages.js | 343 this.values_ = {}; 361 if (goog.isNull(this.values_[number])) { 369 var value = this.values_[field.getNumber()]; 397 var value = this.values_[number]; 412 this.values_[number] = value;
|
/external/v8/src/compiler/ |
D | state-values-utils.cc | 128 : values_(values), count_(count), current_(0) {} in ValueArrayIterator() 140 return values_[current_]; in node() 144 Node** values_; member in v8::internal::compiler::StateValuesCache::ValueArrayIterator
|
/external/v8/src/crankshaft/ |
D | lithium.h | 419 values_(value_count, zone), in LEnvironment() 437 const ZoneList<LOperand*>* values() const { return &values_; } in values() 448 values_.Add(operand, zone()); in AddValue() 451 is_tagged_.Add(values_.length() - 1, zone()); in AddValue() 455 is_uint32_.Add(values_.length() - 1, zone()); in AddValue() 534 ZoneList<LOperand*> values_; variable
|