/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | ByteString.java | 138 * Cached hash value. Intentionally accessed via a data race, which is safe because of the Java 139 * Memory Model's "no out-of-thin-air values" guarantees for ints. A value of 0 implies that the 153 * @return the value 162 * @return the value 244 * Returns the value of the given byte as an integer, interpreting the byte as an unsigned value. 245 * That is, returns {@code value + 256} if {@code value} is negative; {@code value} itself 251 private static int toInt(byte value) { in toInt() argument [all...] |
/third_party/python/Lib/test/ |
H A D | test_compare.py | 131 The "x" attribute should be set to an underlying value to compare. 141 # Classes with all combinations of value-based equality comparison methods. 159 # Classes with all combinations of value-based less/greater-than order 178 # Classes with all combinations of value-based less/greater-or-equal-than 208 `values` is a list of values that determines the value of data 214 that order comparison is performed by value and not by identity. 220 for inst, value in zip(instances, values): 221 inst.x = value 274 # if value-based comparison methods: 276 # else: no value [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/memory/ |
H A D | memory.h | 73 static_assert(!std::is_array<T>::value, "array types are unsupported"); in WrapUnique() 74 static_assert(std::is_object<T>::value, "non-object types are unsupported"); in WrapUnique() 142 // value-initialized. Note as well that `std::unique_ptr` will perform its 193 // Extracts the raw pointer from a pointer-like value `ptr`. `absl::RawPtr` is 208 // type. Ownership (if any) of the held value is transferred to the returned 236 // value is a `std::weak_ptr` of deduced type. 629 // value (e.g. via `-DABSL_ALLOCATOR_NOTHROW`).
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | unordered_map_modifiers_test.h | 220 using IfNotVoid = typename std::enable_if<!std::is_void<V>::value, V>::type; 316 static_assert(is_unique_ptr<typename UnordMap::mapped_type>::value, in UniquePtrModifiersTest() 318 "std::unique_ptr value type."); in UniquePtrModifiersTest()
|
/third_party/skia/include/core/ |
H A D | SkMatrix.h | 24 * by 0, or a negative w value). By default, methods that map rects and paths will apply 300 not one. All other elements may have any value. 343 each value in SkMatrix. 365 /** Returns one matrix value. Asserts if index is out of range and SK_DEBUG is 370 @return value corresponding to index 377 /** Returns one matrix value. Asserts if index is out of range and SK_DEBUG is 382 @return value corresponding to index 389 /** Returns one matrix value from a particular row/column. Asserts if index is out 394 @return value at the given matrix position 458 /** Returns writable SkMatrix value 481 set(int index, SkScalar value) set() argument [all...] |
H A D | SkM44.h | 250 void setRC(int r, int c, SkScalar value) { in setRC() argument 253 fMat[c*4 + r] = value; in setRC()
|
/third_party/rust/crates/syn/codegen/src/ |
H A D | parse.rs | 437 Ok(s.value()) in parse_feature() 471 if let Expr::Lit(expr) = &attr.meta.require_name_value()?.value { in path_attr() 571 filename.value() in do_load_file()
|
/third_party/spirv-tools/source/opt/ |
H A D | fold.cpp | 130 // will be 0, so just return that value. in BinaryOperate() 141 // spir-v spec. Find that value another way. in BinaryOperate() 153 // will be 0, so just return that value. in BinaryOperate() 329 // When shifting by a value larger than the size of the result, the in FoldBinaryIntegerOpToConstant() 345 // TODO: Change the mask against a value based on the bit width of the in FoldBinaryIntegerOpToConstant() 490 if (constants[i]->value()) { in FoldBinaryBooleanOpToConstant() 500 if (!constants[i]->value()) { in FoldBinaryBooleanOpToConstant() 539 // Extract the raw value of the scalar component constants in FoldVectors()
|
H A D | trim_capabilities_pass.cpp | 429 // case 1: Operand is a single value, can directly lookup. in addInstructionRequirementsForOperand() 493 const spv_operand_type_t type, const uint32_t value, in AddExtensionsForOperand() 496 spv_result_t result = context()->grammar().lookupOperand(type, value, &desc); in AddExtensionsForOperand() 492 AddExtensionsForOperand( const spv_operand_type_t type, const uint32_t value, ExtensionSet* extensions) const AddExtensionsForOperand() argument
|
/third_party/spirv-tools/test/val/ |
H A D | val_ssa_test.cpp | 182 OpMemberName %struct 0 "value" in TEST_F() 197 OpMemberName %struct 0 "value" in TEST_F() 1211 %value = OpPhi %boolt %false %entry %copy %if_true in TEST_F() 1226 "OpName %value \"value\"\n" + kBasicTypes + in TEST_F() 1233 %value = OpPhi %boolt %false %entry %value %loop in TEST_F() 1246 "OpName %exit \"exit\"\n" + "OpName %value \"phi\"\n" + in TEST_F() 1264 %value = OpPhi %boolt %true_copy %if_false %false_copy %if_true in TEST_F() 1299 %value in TEST_F() [all...] |
/third_party/vk-gl-cts/scripts/ |
H A D | make_release.py | 148 for var, value in self.replaceVars: 150 'set(%s "%s"' % (var, value), src)
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ycbcr/ |
H A D | vktYCbCrFormatTests.cpp | 590 VkImageTiling value; in populatePerFormatGroup() member 601 const VkImageTiling tiling = tilings[tilingNdx].value; in populatePerFormatGroup()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | os_unix.c | 391 int os_setenv(const char *name, const char *value, int overwrite) in os_setenv() argument 393 return setenv(name, value, overwrite); in os_setenv()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fBooleanStateQueryTests.cpp | 103 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value"); in verifyBoolean() 156 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value"); in verifyBoolean() 190 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value"); in verifyBoolean4() 237 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value"); in verifyBoolean() 271 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value"); in verifyBoolean4() 317 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value"); in verifyBoolean() 351 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value"); in verifyBoolean4() 385 // check inital value in test() 573 bool value; in init() member 588 FOR_EACH_VERIFIER(isEnabledVerifiers, addChild(new IsEnabledStateTestCase(m_context, verifier, (std::string(isEnableds[testNdx].name) + verifier->getTestNamePostfix()).c_str(), isEnableds[testNdx].description, isEnableds[testNdx].targetName, isEnableds[testNdx].value))); in init() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/ |
H A D | wpa.h | 197 unsigned int value); 351 unsigned int value) in wpa_sm_set_param() 349 wpa_sm_set_param(struct wpa_sm *sm, enum wpa_sm_conf_params param, unsigned int value) wpa_sm_set_param() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | common.h | 532 char * wpa_config_parse_string(const char *value, size_t *len); 569 int freq_range_list_parse(struct wpa_freq_range_list *res, const char *value);
|
H A D | os_unix.c | 402 int os_setenv(const char *name, const char *value, int overwrite) in os_setenv() argument 404 return setenv(name, value, overwrite); in os_setenv()
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | roll_chromium_deps.py | 191 assert all(isinstance(value, str) for value in extra_env.values())
|
/vendor/hisilicon/hispark_pegasus/demo/environment_demo/ |
H A D | app_demo_multi_sample.c | 87 void HisparkBoardTest(IotGpioValue value) in HisparkBoardTest() argument 91 IoTGpioSetOutputVal(HI_GPIO_9, value); // GPIO9 in HisparkBoardTest()
|
/vendor/hisilicon/hispark_pegasus/demo/histreaming_demo/ |
H A D | app_demo_multi_sample.c | 87 void HisparkBoardTest(IotGpioValue value) in HisparkBoardTest() argument 91 IoTGpioSetOutputVal(HI_GPIO_9, value); // GPIO9 in HisparkBoardTest()
|
/vendor/hisilicon/hispark_pegasus/demo/nfc_demo/ |
H A D | app_demo_multi_sample.c | 87 void HisparkBoardTest(IotGpioValue value) in HisparkBoardTest() argument 91 IoTGpioSetOutputVal(HI_GPIO_9, value); // GPIO9 in HisparkBoardTest()
|
/vendor/hisilicon/hispark_pegasus/demo/oc_demo/ |
H A D | app_demo_multi_sample.c | 88 void HisparkBoardTest(IotGpioValue value) in HisparkBoardTest() argument 92 IoTGpioSetOutputVal(HI_GPIO_9, value); // GPIO9 in HisparkBoardTest()
|
/vendor/hisilicon/hispark_pegasus/demo/traffic_light_demo/ |
H A D | app_demo_multi_sample.c | 87 void HisparkBoardTest(IotGpioValue value) in HisparkBoardTest() argument 91 IoTGpioSetOutputVal(HI_GPIO_9, value); // GPIO9 in HisparkBoardTest()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/igc/ |
H A D | igc_main.c | 1253 /* set next_to_watch value indicating a packet is present */ in igc_tx_map() 2394 * We just reset to its default value i.e. disable queue in igc_del_mac_filter() 2413 * @prio: VLAN priority value 2445 * @prio: VLAN priority value 2481 * @etype: Ethertype value 2537 * @etype: Ethertype value 2868 /* add q_vector eims value to global eims_enable_mask */ in igc_assign_vector() 3073 * igc_update_itr - update the dynamic ITR value based on statistics 3077 * Stores a new ITR value based on packets and byte 3192 /* Don't write the value her in igc_set_itr() 5063 igc_read_pci_cfg(struct igc_hw *hw, u32 reg, u16 *value) igc_read_pci_cfg() argument 5070 igc_write_pci_cfg(struct igc_hw *hw, u32 reg, u16 *value) igc_write_pci_cfg() argument 5077 igc_read_pcie_cap_reg(struct igc_hw *hw, u32 reg, u16 *value) igc_read_pcie_cap_reg() argument 5089 igc_write_pcie_cap_reg(struct igc_hw *hw, u32 reg, u16 *value) igc_write_pcie_cap_reg() argument 5105 u32 value = 0; igc_rd32() local [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | sdio.c | 562 /* SDIO Pad drive strength to select value mappings */ 565 u8 sel; /* Chip-specific select value */ 568 /* SDIO Drive Strength to sel value table for PMU Rev 11 (1.8V) */ 580 /* SDIO Drive Strength to sel value table for PMU Rev 13 (1.8v) */ 591 /* SDIO Drive Strength to sel value table for PMU Rev 17 (1.8v) */ 598 /* SDIO Drive Strength to sel value table for 43143 PMU Rev 17 (3.3V) */ 735 * read it back until it matches written value in brcmf_sdio_kso_control() 2173 * Return: negative value if there is error 2872 /* Protect against corrupt value */ in brcmf_sdio_readconsole() 3520 u32 value; in brcmf_sdio_bus_preinit() local [all...] |