Home
last modified time | relevance | path

Searched refs:values_ (Results 1 – 25 of 42) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dccp_pass.cpp47 values_[instr->result_id()] = kVaryingSSAId; in MarkInstructionVarying()
63 auto it = values_.find(phi_arg_id); in VisitPhi()
64 if (it != values_.end()) { in VisitPhi()
101 values_[phi->result_id()] = meet_val_id; in VisitPhi()
117 auto val1_it = values_.find(instr->result_id()); in ComputeLatticeMeet()
118 if (val1_it == values_.end()) { in ComputeLatticeMeet()
141 auto it = values_.find(rhs_id); in VisitAssignment()
142 if (it != values_.end()) { in VisitAssignment()
147 values_[instr->result_id()] = new_val; in VisitAssignment()
162 auto it = values_.find(id); in VisitAssignment()
[all …]
/third_party/spirv-tools/source/opt/
Dccp_pass.cpp47 values_[instr->result_id()] = kVaryingSSAId; in MarkInstructionVarying()
63 auto it = values_.find(phi_arg_id); in VisitPhi()
64 if (it != values_.end()) { in VisitPhi()
101 values_[phi->result_id()] = meet_val_id; in VisitPhi()
117 auto val1_it = values_.find(instr->result_id()); in ComputeLatticeMeet()
118 if (val1_it == values_.end()) { in ComputeLatticeMeet()
141 auto it = values_.find(rhs_id); in VisitAssignment()
142 if (it != values_.end()) { in VisitAssignment()
147 values_[instr->result_id()] = new_val; in VisitAssignment()
162 auto it = values_.find(id); in VisitAssignment()
[all …]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dccp_pass.cpp47 values_[instr->result_id()] = kVaryingSSAId; in MarkInstructionVarying()
63 auto it = values_.find(phi_arg_id); in VisitPhi()
64 if (it != values_.end()) { in VisitPhi()
101 values_[phi->result_id()] = meet_val_id; in VisitPhi()
113 auto it = values_.find(rhs_id); in VisitAssignment()
114 if (it != values_.end()) { in VisitAssignment()
118 values_[instr->result_id()] = it->second; in VisitAssignment()
132 auto it = values_.find(id); in VisitAssignment()
133 if (it == values_.end() || IsVaryingValue(it->second)) { in VisitAssignment()
146 values_[instr->result_id()] = folded_inst->result_id(); in VisitAssignment()
[all …]
/third_party/gn/src/gn/
Dscope.cc74 return !values_.empty(); in HasValues()
94 RecordMap::iterator found = values_.find(ident); in GetValueWithScope()
95 if (found != values_.end()) { in GetValueWithScope()
116 RecordMap::iterator found = values_.find(ident); in GetMutableValue()
117 if (found != values_.end()) { in GetMutableValue()
132 RecordMap::const_iterator found = values_.find(ident); in GetStorageKey()
133 if (found != values_.end()) in GetStorageKey()
149 RecordMap::const_iterator found = values_.find(ident); in GetValueWithScope()
150 if (found != values_.end()) { in GetValueWithScope()
162 Record& r = values_[ident]; // Clears any existing value. in SetValue()
[all …]
/third_party/node/deps/v8/src/utils/
Didentity-map.cc30 DeletePointerArray(values_, capacity_); in Clear()
33 values_ = nullptr; in Clear()
94 if (deleted_value != nullptr) *deleted_value = values_[index]; in DeleteIndex()
98 values_[index] = 0; in DeleteIndex()
124 DCHECK_EQ(values_[index], 0); in DeleteIndex()
126 std::swap(values_[index], values_[next_index]); in DeleteIndex()
176 return {&values_[lookup_result.first], lookup_result.second}; in FindOrInsertEntry()
188 return index >= 0 ? &values_[index] : nullptr; in FindEntry()
205 values_ = NewPointerArray(capacity_); in InsertEntry()
206 memset(values_, 0, sizeof(uintptr_t) * capacity_); in InsertEntry()
[all …]
Didentity-map.h53 values_(nullptr), in IdentityMapBase()
93 uintptr_t* values_; variable
/third_party/spirv-tools/test/opt/
Dpropagator_test.cpp38 values_.clear(); in TearDown()
59 for (const auto& it : values_) { in GetValues()
66 std::map<uint32_t, uint32_t> values_; member in spvtools::opt::__anon023bdfb00111::PropagatorTest
116 values_[lhs_id] = val; in TEST_F()
183 values_[instr->result_id()] = val; in TEST_F()
191 auto it = values_.find(phi_arg_id); in TEST_F()
192 if (it != values_.end()) { in TEST_F()
195 values_[instr->result_id()] = it->second; in TEST_F()
212 EXPECT_EQ(values_[phi_instr->result_id()], 4u); in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Dpropagator_test.cpp38 values_.clear(); in TearDown()
59 for (const auto& it : values_) { in GetValues()
66 std::map<uint32_t, uint32_t> values_; member in spvtools::opt::__anon9d3449910111::PropagatorTest
116 values_[lhs_id] = val; in TEST_F()
183 values_[instr->result_id()] = val; in TEST_F()
191 auto it = values_.find(phi_arg_id); in TEST_F()
192 if (it != values_.end()) { in TEST_F()
195 values_[instr->result_id()] = it->second; in TEST_F()
212 EXPECT_EQ(values_[phi_instr->result_id()], 4u); in TEST_F()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Dpropagator_test.cpp38 values_.clear(); in TearDown()
59 for (const auto& it : values_) { in GetValues()
66 std::map<uint32_t, uint32_t> values_; member in spvtools::opt::__anon774be9250111::PropagatorTest
116 values_[lhs_id] = val; in TEST_F()
183 values_[instr->result_id()] = val; in TEST_F()
191 auto it = values_.find(phi_arg_id); in TEST_F()
192 if (it != values_.end()) { in TEST_F()
195 values_[instr->result_id()] = it->second; in TEST_F()
212 EXPECT_EQ(values_[phi_instr->result_id()], 4u); in TEST_F()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcordz_update_tracker.h68 constexpr CordzUpdateTracker() noexcept : values_{} {} in CordzUpdateTracker()
76 values_[i].store(rhs.values_[i].load(std::memory_order_relaxed),
84 return values_[method].load(std::memory_order_relaxed); in Value()
89 auto& value = values_[method];
112 Counter values_[kNumMethods]; variable
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DStruct.cs727 values_ = other.values_.Clone(); in ListValue()
740 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Value> values_ = new pb… field in Google.Protobuf.WellKnownTypes.ListValue
746 get { return values_; }
762 if(!values_.Equals(other.values_)) return false; in Equals()
769 hash ^= values_.GetHashCode(); in GetHashCode()
786 values_.WriteTo(output, _repeated_values_codec); in WriteTo()
796 values_.WriteTo(ref output, _repeated_values_codec); in IBufferMessage.InternalWriteTo()
806 size += values_.CalculateSize(_repeated_values_codec); in CalculateSize()
818 values_.Add(other.values_); in MergeFrom()
834 values_.AddEntriesFrom(input, _repeated_values_codec); in MergeFrom()
[all …]
/third_party/node/deps/v8/src/deoptimizer/
Dtranslated-state.h254 iterator begin() { return iterator(values_.begin()); } in begin()
255 iterator end() { return iterator(values_.end()); } in end()
257 reference front() { return values_.front(); } in front()
258 const_reference front() const { return values_.front(); } in front()
312 void Add(const TranslatedValue& value) { values_.push_back(value); } in Add()
313 TranslatedValue* ValueAt(int index) { return &(values_[index]); } in ValueAt()
326 ValuesContainer values_; variable
Dtranslated-state.cc722 for (auto& value : values_) { in Handlify()
909 int value_index = static_cast<int>(frame.values_.size()); in CreateArgumentsElementsTranslatedValues()
967 int value_index = static_cast<int>(frame.values_.size()); in CreateNextTranslatedValue()
1396 return &(frames_[pos.frame_index_].values_[pos.value_index_]); in GetValueByObjectIndex()
1425 TranslatedValue* slot = &(frame->values_[value_index]); in InitializeCapturedObjectAt()
1453 CHECK_EQ(frame->values_[value_index].kind(), TranslatedValue::kTagged); in InitializeCapturedObjectAt()
1454 Handle<Map> map = Handle<Map>::cast(frame->values_[value_index].GetValue()); in InitializeCapturedObjectAt()
1523 int length = frame->values_[*value_index].GetSmiValue(); in MaterializeFixedDoubleArray()
1530 frame->values_[*value_index].kind()); in MaterializeFixedDoubleArray()
1531 Handle<Object> value = frame->values_[*value_index].GetValue(); in MaterializeFixedDoubleArray()
[all …]
/third_party/googletest/googletest/test/
Dgtest_unittest.cc2745 values_.close_to_positive_zero = in SetUp()
2747 values_.close_to_negative_zero = in SetUp()
2749 values_.further_from_negative_zero = in SetUp()
2756 values_.close_to_one = Floating::ReinterpretBits(one_bits + max_ulps); in SetUp()
2757 values_.further_from_one = in SetUp()
2761 values_.infinity = Floating::Infinity(); in SetUp()
2764 const Bits infinity_bits = Floating(values_.infinity).bits(); in SetUp()
2767 values_.close_to_infinity = in SetUp()
2769 values_.further_from_infinity = in SetUp()
2775 values_.nan1 = Floating::ReinterpretBits( in SetUp()
[all …]
/third_party/benchmark/src/
Dperf_counters.h58 uint64_t operator[](size_t pos) const { return values_[pos]; }
69 return {reinterpret_cast<char*>(values_.data()), in get_data_buffer()
81 std::array<uint64_t, kPadding + kMaxCounters> values_; variable
Dperf_counters.cc35 const size_t bufsize = values_.size() * sizeof(values_[0]); in Read()
36 char* ptr = reinterpret_cast<char*>(values_.data()); in Read()
/third_party/protobuf/src/google/protobuf/
Dstruct.pb.cc110 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::ListValue, values_),
897 values_(arena) { in ListValue()
904 values_(from.values_) { in ListValue()
944 values_.Clear(); in Clear()
1022 for (const auto& msg : this->values_) { in ByteSizeLong()
1058 values_.MergeFrom(from.values_); in MergeFrom()
1082 values_.InternalSwap(&other->values_); in InternalSwap()
Dstruct.pb.h687 ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::Value > values_;
1109 return values_.size(); in _internal_values_size()
1115 values_.Clear(); in clear_values()
1119 return values_.Mutable(index); in mutable_values()
1124 return &values_; in mutable_values()
1127 return values_.Get(index); in _internal_values()
1134 return values_.Add(); in _internal_add_values()
1143 return values_; in values()
/third_party/vk-gl-cts/external/amber/src/src/
Dcommand.h446 void SetValues(std::vector<Value>&& values) { values_ = std::move(values); } in SetValues()
447 const std::vector<Value>& GetValues() const { return values_; } in GetValues()
457 std::vector<Value> values_; variable
549 void SetValues(std::vector<Value>&& values) { values_ = std::move(values); } in SetValues()
550 const std::vector<Value>& GetValues() const { return values_; } in GetValues()
570 std::vector<Value> values_; variable
/third_party/libabigail/src/
Dabg-ini.cc362 vector<string> values_; member
369 : values_(vals) in priv()
397 {return priv_->values_;} in get_content()
405 priv_->values_ = values; in set_content()
417 for (vector<string>::const_iterator i = priv_->values_.begin(); in as_string()
418 i != priv_->values_.end(); in as_string()
421 if (i != priv_->values_.begin()) in as_string()
/third_party/node/deps/v8/include/
Dv8-function-callback.h136 internal::Address* values_; variable
385 : implicit_args_(implicit_args), values_(values), length_(length) {} in FunctionCallbackInfo()
391 return Local<Value>(reinterpret_cast<Value*>(values_ + i));
397 return Local<Object>(reinterpret_cast<Object*>(values_ - 1)); in This()
/third_party/node/deps/v8/src/compiler/
Dbytecode-graph-builder.cc606 const NodeVector* values() const { return &values_; } in values()
607 NodeVector* values() { return &values_; } in values()
617 NodeVector values_; member in v8::internal::compiler::BytecodeGraphBuilder::Environment
649 values_(builder->local_zone()), in Environment()
700 values_(other->zone()), in Environment()
705 values_ = other->values_; in Environment()
806 values_[i] = builder()->MergeValue(values_[i], other->values_[i], control); in Merge()
818 DCHECK_NE(values_[index], builder()->jsgraph()->OptimizedOutConstant()); in Merge()
819 DCHECK_NE(other->values_[index], in Merge()
824 values_[index] = in Merge()
[all …]
/third_party/node/deps/v8/src/maglev/
Dmaglev-interpreter-frame-state.h211 bool is_initialized() const { return values_[0].GetPayload().is_initialized; } in is_initialized()
214 return Iterator(values_, kAllocatableGeneralRegisters.begin()); in begin()
217 return Iterator(values_ + kAllocatableGeneralRegisterCount, in end()
222 RegisterState values_[kAllocatableGeneralRegisterCount] = {{}};
/third_party/node/deps/v8/src/api/
Dapi-arguments.h54 return FullObjectSlot(values_ + index); in slot_at()
56 Address values_[T::kArgsLength]; variable
Dapi-arguments-inl.h80 PropertyCallbackInfo<API_RETURN_TYPE> callback_info(values_);
88 PropertyCallbackInfo<API_RETURN_TYPE> callback_info(values_);
146 FunctionCallbackInfo<v8::Value> info(values_, argv_, argc_); in FOR_EACH_CALLBACK()

12