/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | constants.h | 269 : ScalarConstant(ty, {static_cast<uint32_t>(v)}), value_(v) {} in BoolConstant() 276 return MakeUnique<BoolConstant>(type_->AsBool(), value_); in CopyBoolConstant() 282 bool value() const { return value_; } in value() 285 bool value_; member in spvtools::opt::analysis::BoolConstant
|
/third_party/spirv-tools/source/opt/ |
H A D | constants.h | 269 : ScalarConstant(ty, {static_cast<uint32_t>(v)}), value_(v) {} in BoolConstant() 276 return MakeUnique<BoolConstant>(type_->AsBool(), value_); in CopyBoolConstant() 282 bool value() const { return value_; } in value() 285 bool value_; member in spvtools::opt::analysis::BoolConstant
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.cc | 194 : Expression(pos, node_type), target_(target), value_(value) { in Assignment() 292 } else if (value_->AsMaterializedLiteral() != nullptr) { in ObjectLiteralProperty() 294 } else if (value_->IsLiteral()) { in ObjectLiteralProperty() 302 return is_computed_name() && (value_->IsAnonymousFunctionDefinition() || in NeedsSetFunctionName() 303 value_->IsConciseMethodDefinition() || in NeedsSetFunctionName() 304 value_->IsAccessorFunctionDefinition()); in NeedsSetFunctionName() 319 (kind_ == MATERIALIZED_LITERAL && value_->IsCompileTimeValue()); in IsCompileTimeValue()
|
/third_party/skia/third_party/externals/spirv-tools/source/util/ |
H A D | hex_float.h | 294 explicit HexFloat(T f) : value_(f) {} in HexFloat() 296 T value() const { return value_; } in value() 297 void set_value(T f) { value_ = f; } in set_value() 358 uint_type getBits() const { return value_.data(); } in getBits() 362 return static_cast<uint_type>(value_.data() & ~sign_mask); in getUnsignedBits() 463 value_ = T(new_value); in setFromSignUnbiasedExponentAndNormalizedSignificand() 710 T value_; member in spvtools::utils::round_direction::HexFloat
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/ |
H A D | hex_float.h | 294 explicit HexFloat(T f) : value_(f) {} in HexFloat() 296 T value() const { return value_; } in value() 297 void set_value(T f) { value_ = f; } in set_value() 358 uint_type getBits() const { return value_.data(); } in getBits() 362 return static_cast<uint_type>(value_.data() & ~sign_mask); in getUnsignedBits() 463 value_ = T(new_value); in setFromSignUnbiasedExponentAndNormalizedSignificand() 710 T value_; member in spvtools::utils::round_direction::HexFloat
|
/third_party/spirv-tools/source/util/ |
H A D | hex_float.h | 295 explicit HexFloat(T f) : value_(f) {} in HexFloat() 297 T value() const { return value_; } in value() 298 void set_value(T f) { value_ = f; } in set_value() 359 uint_type getBits() const { return value_.data(); } in getBits() 363 return static_cast<uint_type>(value_.data() & ~sign_mask); in getUnsignedBits() 464 value_ = T(new_value); in setFromSignUnbiasedExponentAndNormalizedSignificand() 711 T value_; member in spvtools::utils::round_direction::HexFloat
|
/test/xts/hats/distributedhardware/distributedcameratest_additional/ |
H A D | dcameraprovidercase.cpp | 99 result.value_ = "SettingValue"; in SetUpTestCase() 385 * @tc.desc : OnSettingsResult, result.value_ = "", return invalid_argument 391 result.value_ = ""; in HWTEST_F() 2228 result.value_ = "SettingValue"; in HWTEST_F() 2245 result.value_ = "SettingValue"; in HWTEST_F() 2262 result.value_ = "SettingValue"; in HWTEST_F() 2279 result.value_ = "SettingValue"; in HWTEST_F() 2296 result.value_ = "SettingValue"; in HWTEST_F() 2313 result.value_ = "SettingValue"; in HWTEST_F() 2330 result.value_ in HWTEST_F() [all...] |
/third_party/libabigail/include/ |
H A D | abg-ir.h | 279 unsigned value_; member in abigail::ir::location 293 : value_(v), loc_manager_(m), is_artificial_(false) in location() 342 : value_(l.value_), in location() 353 value_ = l.value_; in operator =() 361 : value_(), loc_manager_(), is_artificial_() in location() 367 {return value_;} in get_value() 374 {return !!value_;} in operator bool() 383 {return value_ in operator ==() [all...] |
/third_party/gn/src/gn/ |
H A D | operators_unittest.cc | 35 TestParseNode(const Value& v) : value_(v) {} in TestParseNode() 37 Value Execute(Scope* scope, Err* err) const override { return value_; } 46 Value value_; member in __anon2950::TestParseNode
|
/third_party/protobuf/src/google/protobuf/ |
H A D | map_field_inl.h | 158 this_iter->value_.SetType( in CopyIterator() 159 static_cast<FieldDescriptor::CppType>(that_iter.value_.type_)); in CopyIterator() 204 map_iter->value_.SetValue(&iter->second); in SetMapIteratorValue()
|
H A D | any.h | 115 ValueType* value_; member in google::protobuf::internal::AnyMetadata
|
H A D | map_field.h | 737 value_.SetType(field->message_type()->FindFieldByName("value")->cpp_type()); in MapIterator() 769 const MapValueRef& GetValueRef() { return value_; } in GetValueRef() 772 return &value_; in MutableValueRef() 794 MapValueRef value_; member in google::protobuf::MapIterator
|
/third_party/googletest/googlemock/test/ |
H A D | gmock-matchers-misc_test.cc | 94 explicit NotCopyable(int a_value) : value_(a_value) {} in NotCopyable() 96 int value() const { return value_; } in value() 107 int value_; member in testing::gmock_matchers_test::__anon3004::NotCopyable 678 : value_(std::move(value)), has_value_(true) {} in SampleOptional() 679 SampleOptional() : value_(), has_value_(false) {} in SampleOptional() 681 const T& operator*() const { return value_; } in operator *() 684 T value_; member in testing::gmock_matchers_test::__anon3004::SampleOptional 1136 explicit UncopyableFoo(char value) : value_(value) { (void)value_; } in UncopyableFoo() 1142 char value_; member in testing::gmock_matchers_test::__anon3004::UncopyableFoo [all...] |
/drivers/hdf_core/framework/tools/hdi-gen/ast/ |
H A D | ast_parameter.h | 43 return attr_->value_; in GetAttribute()
|
/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A D | deCommandLine.hpp | 195 Entry (void* value_, DestroyFunc destructor_) : value(value_), destructor(destructor_) {} in Entry()
|
/third_party/node/deps/v8/src/common/ |
H A D | globals.h | 1867 constexpr int31_t() : value_(0) {} in int31_t() 1868 constexpr int31_t(int value) : value_(value) { // NOLINT(runtime/explicit) in int31_t() 1873 value_ = value; in operator =() 1876 int32_t value() const { return value_; } in value() 1877 operator int32_t() const { return value_; } in operator int32_t() 1880 int32_t value_; member in v8::internal::ForInFeedback::DefineKeyedOwnPropertyInLiteralFlag::ExceptionStatus::int31_t
|
/third_party/node/deps/v8/src/compiler/ |
H A D | code-assembler.cc | 1378 value_(nullptr), in Impl() 1394 Node* value_; member in v8::internal::compiler::CodeAssemblerVariable::Impl 1445 void CodeAssemblerVariable::Bind(Node* value) { impl_->value_ = value; } in Bind() 1463 return impl_->value_; in value() 1468 bool CodeAssemblerVariable::IsBound() const { return impl_->value_ != nullptr; } in IsBound() 1507 Node* node = var->value_; in MergeVariables() 1638 var->value_ = i->second; in UpdateVariablesAfterBind() 1642 var->value_ = j->second.back(); in UpdateVariablesAfterBind() 1644 var->value_ = nullptr; in UpdateVariablesAfterBind()
|
H A D | types.h | 544 double Value() const { return value_; } in Value() 558 : TypeBase(kOtherNumberConstant), value_(value) { in OtherNumberConstantType() 564 double value_; member in v8::internal::compiler::BitsetType::OtherNumberConstantType
|
H A D | js-operator.h | 85 CallFrequency() : value_(std::numeric_limits<float>::quiet_NaN()) {} in CallFrequency() 86 explicit CallFrequency(float value) : value_(value) { in CallFrequency() 91 bool IsUnknown() const { return std::isnan(value_); } in IsUnknown() 94 return value_; in value() 98 return bit_cast<uint32_t>(this->value_) == bit_cast<uint32_t>(that.value_); in operator ==() 103 return bit_cast<uint32_t>(f.value_); in hash_value() 109 float value_; member in v8::internal::compiler::final
|
/third_party/node/deps/v8/src/torque/ |
H A D | declarable.h | 246 VisitResult value() const { return *value_; } in value() 250 DCHECK(!value_); in set_value() 251 value_ = value; in set_value() 261 base::Optional<VisitResult> value_; member in v8::internal::torque::Value
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
H A D | fixed_array_test.cc | 49 ConstructionTester() : self_ptr_(this), value_(0) { constructions++; } in ConstructionTester() 63 void set(int value) { value_ = value; } in set() 64 int get() { return value_; } in get() 70 int value_; member in __anon19163::ConstructionTester
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
H A D | code-generator-s390.cc | 179 value_(value), in OutOfLineRecordWrite() 201 value_(value), in OutOfLineRecordWrite() 215 __ DecompressTaggedPointer(value_, value_); 217 __ CheckPageFlag(value_, scratch0_, 262 Register const value_; member in v8::internal::compiler::__anon14306::final 2409 Register value_ = value; in AssembleArchInstruction() local 2411 value_ = ip; in AssembleArchInstruction() 2412 __ lrvr(value_, value); in AssembleArchInstruction() 2413 __ ShiftRightU32(value_, value in AssembleArchInstruction() 2435 Register value_ = value; AssembleArchInstruction() local 2547 Register value_ = value; AssembleArchInstruction() local [all...] |
/kernel/linux/linux-6.6/tools/workqueue/ |
H A D | wq_dump.py | 101 print(f' nr_pods {pt.nr_pods.value_()}') 110 print(f' [{pod}]={pt.pod_node[pod].value_()}', end='') 115 print(f' [{cpu}]={pt.cpu_pod[cpu].value_()}', end='') 132 max_ref_len = max(max_ref_len, len(f'{pool.refcnt.value_()}')) 136 print(f'pool[{pi:0{max_pool_id_len}}] ref={pool.refcnt.value_():{max_ref_len}} nice={pool.attrs.nice.value_():3} ', end='') 137 print(f'idle/workers={pool.nr_idle.value_():3}/{pool.nr_workers.value_():3} ', end='') 139 print(f'cpu={pool.cpu.value_():3}', end='') 171 pool_id = per_cpu_ptr(wq.cpu_pwq, cpu)[0].pool.id.value_() [all...] |
/third_party/skia/third_party/externals/libwebp/src/utils/ |
H A D | bit_reader_utils.h | 49 // The Boolean decoder needs to maintain infinite precision on the value_ field. 51 // for value_. Left bits (MSB) gets zeroed and shifted away when value_ falls 77 // bit_t = natural register type for storing 'value_' (which is BITS+8 bits) 94 bit_t value_; // current value member
|
H A D | bit_writer_utils.h | 29 int32_t value_; member
|