Home
last modified time | relevance | path

Searched refs:value (Results 15251 - 15275 of 31071) sorted by relevance

1...<<611612613614615616617618619620>>...1243

/third_party/protobuf/src/google/protobuf/
H A Dany_lite.cc56 AnyMetadata::AnyMetadata(UrlType* type_url, ValueType* value) in AnyMetadata() argument
57 : type_url_(type_url), value_(value) {} in AnyMetadata()
/third_party/protobuf/src/google/protobuf/stubs/
H A Dmutex.h159 static void Delete(void* value) { in Delete() argument
160 delete static_cast<T*>(value); in Delete()
/third_party/python/Lib/test/test_importlib/builtin/
H A Dtest_loader.py22 for attr, value in self.verification.items():
23 self.assertEqual(getattr(module, attr), value)
/third_party/rust/crates/minimal-lexical/etc/
H A Dbellerophon_table.py10 i.e., within 0.5 ULP of the true value.
39 is the absolute value of the max exponent (log distance from 1.)
46 '''Generate the next extended-floating point value.'''
52 '''Generate the previous extended-floating point value.'''
114 value = " {},".format(fp[index])
116 print(value.ljust(30, " ") + exp)
/third_party/rust/crates/clap/clap_derive/src/utils/
H A Ddoc_comments.rs21 value: in extract_doc_comment()
27 }) => Some(s.value()), in extract_doc_comment()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dpool_urbg.h36 static_assert(std::is_unsigned<result_type>::value,
50 // Returns a single value.
57 // Generate returns a single value.
82 static_assert(std::is_unsigned<result_type>::value,
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dunordered_set_lookup_test.h57 decltype(*it)>::value, in TYPED_TEST_P()
60 decltype(it.operator->())>::value, in TYPED_TEST_P()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_lookup.cc64 int __system_property_get(const char* name, char* value) { in __system_property_get() argument
66 return system_property_get ? system_property_get(name, value) : -1; in __system_property_get()
/third_party/skia/experimental/graphite/src/
H A DEnumBitMask.h55 SK_ALWAYS_INLINE constexpr explicit Mask(int value) : fValue(value) {} in Mask() argument
/third_party/skia/include/core/
H A DSkColorPriv.h17 byte into a scale value, so that we can say scale * value >> 8 instead of
18 alpha * value / 255.
29 /** Multiplify value by 0..256, and shift the result down 8
30 (i.e. return (value * alpha256) >> 8)
32 #define SkAlphaMul(value, alpha256) (((value) * (alpha256)) >> 8)
/third_party/skia/modules/svg/src/
H A DSkSVGImage.cpp30 return !fHref.iri().isEmpty() && fWidth.value() > 0 && fHeight.value() > 0 && in onPrepareToRender()
/third_party/selinux/libselinux/utils/
H A Dmatchpathcon.c106 options[SELABEL_OPT_PATH].value = optarg; in main()
122 options[SELABEL_OPT_SUBSET].value = optarg; in main()
H A Dselabel_get_digests_all_partial_matches.c74 selabel_option[0].value = file; in main()
75 selabel_option[1].value = validate; in main()
H A Dselabel_lookup_best_match.c112 options[0].value = file; in main()
113 options[1].value = validate; in main()
/third_party/rust/crates/serde/test_suite/tests/
H A Dtest_borrow.rs7 use serde::de::value::{BorrowedStrDeserializer, MapDeserializer};
109 assert_de_tokens(&FieldStr::Str("value"), &[Token::BorrowedStr("value")]);
119 &FieldBytes::Bytes(b"value"),
120 &[Token::BorrowedBytes(b"value")],
137 type Deserializer = BorrowedStrDeserializer<'de, serde::de::value::Error>; in test_cow()
/third_party/rust/crates/rustix/src/io/fd/
H A Downed.rs25 /// value `-1`.
50 /// passed as a consumed argument or returned as an owned value, and it never
51 /// has the value `-1`.
70 /// the returned `BorrowedFd`, and it must not have the value `-1`.
75 // SAFETY: we just asserted that the value is in the valid range and isn't `-1` (the only value bigger than `0xFF_FF_FF_FE` unsigned)
153 // SAFETY: we just asserted that the value is in the valid range and isn't `-1` (the only value bigger than `0xFF_FF_FF_FE` unsigned) in from_raw_fd()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fBooleanStateQueryTests.cpp79 // check inital value in iterate()
142 bool value; in init() member
157 FOR_EACH_VERIFIER(isEnabledVerifiers, new IsEnabledStateTestCase(m_context, verifier, (std::string(isEnableds[testNdx].name) + "_" + verifierSuffix).c_str(), isEnableds[testNdx].description, isEnableds[testNdx].targetName, isEnableds[testNdx].value, isEnableds[testNdx].minimumContext)); in init()
/third_party/vk-gl-cts/framework/common/
H A DtcuMaybe.hpp79 Maybe<T> just (const T& value) in just() argument
81 return Maybe<T>(value); in just()
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeSTLUtil.hpp77 //! Return a pointer to the value mapped to `key`, or null if not found.
88 //! Return a reference to the value mapped to `key`, or `fallback` if not found.
98 //! Return a reference to the value mapped to `key`, or raise
109 //! Map `key` to `value`. This differs from `map[key] = value` in that there
112 bool insert (M& map, const typename M::key_type& key, const typename M::mapped_type& value) in insert() argument
114 typename M::value_type entry(key, value); in insert()
140 // Returns the container size() as an uint32_t value.
/third_party/vk-gl-cts/framework/randomshaders/
H A DrsgShader.cpp63 ValueAccess(variable->getType(), &m_min[0]) = valueRange.getMin().value(); in ShaderInput()
64 ValueAccess(variable->getType(), &m_max[0]) = valueRange.getMax().value(); in ShaderInput()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A Dutil.h20 // If overflow happens, clamp the value to UINT_MIN or UINT_MAX.
22 bool atoi_clamp(const char *str, unsigned int *value);
46 // 2. it sets the value to infinity if overflow happens.
50 bool strtof_clamp(const std::string &str, float *value);
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DAttributeMap.cpp22 void AttributeMap::insert(EGLAttrib key, EGLAttrib value) in insert() argument
24 mValidatedAttributes[key] = value; in insert()
/kernel/linux/linux-5.10/sound/soc/codecs/
H A Dda7218.c435 * If ALC in operation and value of control has been updated, in da7218_mixin_gain_put()
451 unsigned int lvalue = ucontrol->value.integer.value[0]; in da7218_alc_sw_put()
452 unsigned int rvalue = ucontrol->value.integer.value[1]; in da7218_alc_sw_put()
481 * Frequency value spans two 8-bit registers, lower then upper byte. in da7218_tonegen_freq_get()
488 ucontrol->value.integer.value[0] = le16_to_cpu(val); in da7218_tonegen_freq_get()
504 * Frequency value spans two 8-bit registers, lower then upper byte. in da7218_tonegen_freq_put()
508 val = cpu_to_le16(ucontrol->value in da7218_tonegen_freq_put()
[all...]
/kernel/linux/linux-6.6/drivers/accel/habanalabs/common/
H A Dfirmware_if.c345 int hl_fw_send_pci_access_msg(struct hl_device *hdev, u32 opcode, u64 value) in hl_fw_send_pci_access_msg() argument
350 pkt.value = cpu_to_le64(value); in hl_fw_send_pci_access_msg()
388 /* set fence to a non valid value */ in hl_fw_send_cpu_message()
473 * previous PI value written during packet submission. in hl_fw_send_cpu_message()
474 * We must do this or else F/W can read an old value upon queue wraparound. in hl_fw_send_cpu_message()
498 pkt.value = cpu_to_le64(event_type); in hl_fw_unmask_irq()
558 test_pkt.value = cpu_to_le64(CPUCP_PACKET_FENCE_VAL); in hl_fw_test_cpu_queue()
615 pkt.value = cpu_to_le64(open); in hl_fw_send_device_activity()
632 hb_pkt.value in hl_fw_send_heartbeat()
3090 long value; hl_fw_get_clk_rate() local
[all...]
/kernel/linux/linux-6.6/sound/soc/codecs/
H A Dda7218.c435 * If ALC in operation and value of control has been updated, in da7218_mixin_gain_put()
451 unsigned int lvalue = ucontrol->value.integer.value[0]; in da7218_alc_sw_put()
452 unsigned int rvalue = ucontrol->value.integer.value[1]; in da7218_alc_sw_put()
481 * Frequency value spans two 8-bit registers, lower then upper byte. in da7218_tonegen_freq_get()
488 ucontrol->value.integer.value[0] = le16_to_cpu(val); in da7218_tonegen_freq_get()
504 * Frequency value spans two 8-bit registers, lower then upper byte. in da7218_tonegen_freq_put()
508 val = cpu_to_le16(ucontrol->value in da7218_tonegen_freq_put()
[all...]

Completed in 24 milliseconds

1...<<611612613614615616617618619620>>...1243