/third_party/rust/crates/clap/src/error/ |
H A D | mod.rs | 193 pub fn insert(&mut self, kind: ContextKind, value: ContextValue) -> Option<ContextValue> { in insert() 194 self.inner.context.insert(kind, value) in insert() 314 value: ContextValue, 316 self.inner.context.insert_unchecked(kind, value); 439 styled_suggestion.none("' as a value, use '"); 668 styled_suggestion.none("' as a value, use '");
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | iostream_state_saver_test.cc | 32 typename absl::enable_if_t<std::is_integral<T>::value, T> // 56 typename absl::enable_if_t<std::is_floating_point<T>::value, T> //
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | str_format.h | 34 // write a format string to a `string` value. 131 // operation to this point, into an integer value. 212 // written to this point. The resulting value must be captured within an 235 // "%p", (void*)&value -> "0x7ffdeb6ad2a4" 280 // value = absl::StrFormat(*format_runtime, i); 302 // // `format` can be used with any value that supports 'd' and 'x', 305 // value = StringF(format, i); 432 // not occur. In the event of an error, a negative value is returned and `errno` 478 str_format_internal::FormatRawSinkImpl, T*>::value>::type> 532 // caller should check the return value t 806 bool value; global() member [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
H A D | conformance_testing_helpers.h | 111 // return the same value upon invocation. 195 ResultOfGeneratorT<Head>, ResultOfGeneratorT<Tail>>...>::value>::type, 221 // value type is always compatible. 266 typename IsNullaryCallable<HeadHeadFun>::result_type>::value,
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
H A D | sysinfo.cc | 188 // and the memory location pointed to by value is set to the value read. 189 static bool ReadLongFromFile(const char *file, long *value) { in ReadLongFromFile() argument 202 *value = temp_value; in ReadLongFromFile() 213 // Reads a monotonic time source and returns a value in 214 // nanoseconds. The returned value uses an arbitrary epoch, not the 321 // value with a higher frequency than that of the real TSC in GetNominalCPUFrequency() 422 // use. ID 0 is unused because it is the default value returned by
|
/third_party/skia/third_party/externals/angle2/include/EGL/ |
H A D | eglext_angle.h | 294 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBANGLEPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); 297 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribANGLE(EGLDisplay dpy, EGLint attribute, EGLAttrib *value);
|
/third_party/skia/modules/skshaper/include/ |
H A D | SkShaper.h | 118 uint32_t value; member 127 static_assert(std::is_base_of<RunIterator, RunIteratorSubclass>::value, "");
|
/third_party/skia/modules/skshaper/src/ |
H A D | SkShaper_coretext.cpp | 123 static void dict_add_double(CFMutableDictionaryRef d, const void* name, double value) { in dict_add_double() argument 125 CFNumberCreate(kCFAllocatorDefault, kCFNumberDoubleType, &value)); in dict_add_double()
|
/third_party/skia/include/core/ |
H A D | SkPoint.h | 28 int32_t fX; //!< x-axis value 29 int32_t fY; //!< y-axis value 33 @param x integer x-axis value of constructed SkIPoint 34 @param y integer y-axis value of constructed SkIPoint 41 /** Returns x-axis value of SkIPoint. 47 /** Returns y-axis value of SkIPoint. 61 @param x new value for fX 62 @param y new value for fY 97 @param x value compared with fX 98 @param y value compare [all...] |
/third_party/skia/experimental/docs/ |
H A D | animationCommon.js | 175 var value = Math.min(1, (animationState.time - animation.time) / animation.duration); 176 var scaled = action.range[0] + (action.range[1] - action.range[0]) * value; 193 // evaluate inline function to get value 194 action.func = new Function('value', 'params', "return " + action.formula);
|
/third_party/rust/crates/rustix/src/net/ |
H A D | sockopt.rs | 38 /// `setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, value)` 56 pub fn set_socket_reuseaddr<Fd: AsFd>(fd: Fd, value: bool) -> io::Result<()> { in set_socket_reuseaddr() 57 backend::net::syscalls::sockopt::set_socket_reuseaddr(fd.as_fd(), value) in set_socket_reuseaddr()
|
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-random/ |
H A D | runtests.py | 40 Instead, we take the input and compute the true value with bignum arithmetic 48 - If the approximation is 0.0, the exact value should be *less or equal* 52 - If the approximation is Inf, the exact value should be *greater or equal* 182 done.value = True 260 return DONE_FLAG.value
|
/third_party/selinux/libselinux/src/ |
H A D | label.c | 66 opts[n].value == (char *)1) { in selabel_is_digest_set() 119 return !!opts[n].value; in selabel_is_validate_set()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | pkey.rs | 106 pub fn from_raw(value: c_int) -> Id { in from_raw() 107 Id(value) in from_raw()
|
/third_party/spirv-tools/source/opt/ |
H A D | scalar_analysis_nodes.h | 134 // Collect all the value unknown nodes in this SENode 207 // the type (as a string), the literal value of any constants, and the child 217 SEConstantNode(ScalarEvolutionAnalysis* parent_analysis, int64_t value) in SEConstantNode() argument 218 : SENode(parent_analysis), literal_value_(value) {} in SEConstantNode() 236 // expression is an expression whose value can be expressed as a linear 238 // value of a recurrent expression is coefficent_ * iteration + offset_, hence 312 // A node representing a value which we do not know the value of, such as a load 317 // of that instruction. This is so we cancompare value unknowns and have a 318 // unique value unknow [all...] |
/third_party/spirv-tools/test/ |
H A D | text_to_binary.control_flow_test.cpp | 49 {1, uint32_t(GetParam().value())}))); in TEST_P() 90 Eq(MakeInstruction(spv::Op::OpLoopMerge, {1, 2, ctrl.value()}, in TEST_P() 238 // constant value string, and expected encoded constant.
|
H A D | text_to_binary.mode_setting_test.cpp | 150 {1, std::get<1>(GetParam()).value()}, in TEST_P() 224 Eq(MakeInstruction(spv::Op::OpCapability, {GetParam().value()}))); in TEST_P()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fFboTestCase.cpp | 369 void FboTestCase::clearColorBuffer (const tcu::TextureFormat& format, const tcu::Vec4& value) in clearColorBuffer() argument 371 FboTestUtil::clearColorBuffer(*getCurrentContext(), format, value); in clearColorBuffer() local
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fFboTestCase.cpp | 389 void FboTestCase::clearColorBuffer (const tcu::TextureFormat& format, const tcu::Vec4& value) in clearColorBuffer() argument 391 FboTestUtil::clearColorBuffer(*getCurrentContext(), format, value); in clearColorBuffer() local
|
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgVariableManager.hpp | 91 void setValue (const Variable* variable, ConstValueRangeAccess value); 218 void setValue (const Variable* variable, ConstValueRangeAccess value); 256 std::vector<const ValueEntry*> m_entryCache; //!< For faster value entry access.
|
/third_party/vulkan-loader/loader/ |
H A D | loader_common.h | 95 char *value; member 494 char value[VK_MAX_EXTENSION_NAME_SIZE]; member
|
/vendor/hisilicon/hispark_pegasus/demo/iottencent_demo/ |
H A D | iot_profile.c | 33 ret = cJSON_CreateNumber((double)(*(long *)kv->value)); in FormatProfileValue() 36 ret = cJSON_CreateString((const char *)kv->value); in FormatProfileValue()
|
/vendor/hisilicon/hispark_pegasus/demo/mqtt_demo/ |
H A D | iot_profile.c | 33 ret = cJSON_CreateNumber((double)(*(long *)kv->value)); in FormatProfileValue() 36 ret = cJSON_CreateString((const char *)kv->value); in FormatProfileValue()
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
H A D | bcmutils.c | 299 * DSCP priority value. This is required for Linux APs because in pktsetprio() 301 * with the priority value in the vlan tag in pktsetprio() 369 /* 255 is unused value so return up from dscp */ in dscp2up() 439 /* usr_prio range from low to high with usr_prio value */ 1063 uint16 start; /* start value of 16bit ids to be managed */ 1256 void BCMFASTPATH /* Free a 16bit id value into the id16 allocator */ 1737 uint64 result, last_result = 0, value; in bcm_strtoull() local 1770 (value = (uint64)(bcm_isdigit(*cp) ? *cp-'0' : bcm_toupper(*cp)-'A'+10)) < base) { in bcm_strtoull() 1771 result = result*base + value; in bcm_strtoull() 2411 bcm_object_feature_set(void *obj, uint32 type, uint32 value) in bcm_object_feature_set() argument 2450 bcm_object_feature_get(void *obj, uint32 type, uint32 value) bcm_object_feature_get() argument 3972 sqrt_int(uint32 value) sqrt_int() argument 4169 array_value_mismatch_count(uint8 value, uint8 *array, int array_size) array_value_mismatch_count() argument [all...] |
/kernel/linux/linux-5.10/drivers/spi/ |
H A D | spi.c | 78 /* We need to keep extra room for a newline when displaying value */ in driver_override_store() 649 * Also, unless we change the return value convention to use in spi_new_device() 1047 * Restore the original value of tx_buf or rx_buf if they are in spi_unmap_msg() 1170 u32 delay = _delay->value; in spi_delay_to_ns() 1225 u32 delay = xfer->cs_change_delay.value; in _spi_transfer_cs_change_delay() 1645 * (by setting the ->rt value before calling spi_register_controller()) or 1937 u32 value; in of_spi_parse_dt() local 1953 if (!of_property_read_u32(nc, "spi-tx-bus-width", &value)) { in of_spi_parse_dt() 1954 switch (value) { in of_spi_parse_dt() 1969 value); in of_spi_parse_dt() 4159 acpi_spi_notify(struct notifier_block *nb, unsigned long value, void *arg) acpi_spi_notify() argument [all...] |