Home
last modified time | relevance | path

Searched refs:value (Results 10326 - 10350 of 29815) sorted by relevance

1...<<411412413414415416417418419420>>...1193

/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dssa_rewrite_pass.cpp136 // This is a self-reference operand or a reference to the same value ID. in TryRemoveTrivialPhi()
264 // Otherwise, look up the value for |var_id| in |bb|'s predecessors. in GetReachingDef()
276 // Set the value for |bb| to avoid an infinite recursion. in GetReachingDef()
362 // pointer (%2), instead of a float value. in ProcessLoad()
365 // chain until we get to a float value or a non-target var (i.e. a variable in ProcessLoad()
542 "Inconsistent value for duplicate edges."); in ApplyReplacements()
654 // For the cases the value assignment is invisible to DebugDeclare e.g., in AddDebugValuesForInvisibleDebugDecls()
664 // We want to specify the value for the variable using |defs_at_block_[bb]|, in AddDebugValuesForInvisibleDebugDecls()
676 Instruction* value = nullptr; in AddDebugValuesForInvisibleDebugDecls() local
677 if (value_id) value in AddDebugValuesForInvisibleDebugDecls()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dir_builder.h222 // The value |selection_control| is the selection control flag for the
250 // The value |selection_control| is the selection control flag for the
363 // with the given value. Returns |nullptr| if the constant does not exist and
365 Instruction* GetSintConstant(int32_t value) { in GetSintConstant() argument
366 return GetIntConstant<int32_t>(value, true); in GetSintConstant()
387 // with the given value. Returns |nullptr| if the constant does not exist and
389 Instruction* GetUintConstant(uint32_t value) { in GetUintConstant() argument
390 return GetIntConstant<uint32_t>(value, false); in GetUintConstant()
393 uint32_t GetUintConstantId(uint32_t value) { in GetUintConstantId() argument
394 Instruction* uint_inst = GetUintConstant(value); in GetUintConstantId()
404 GetIntConstant(T value, bool sign) GetIntConstant() argument
[all...]
H A Dssa_rewrite_pass.cpp136 // This is a self-reference operand or a reference to the same value ID. in TryRemoveTrivialPhi()
264 // Otherwise, look up the value for |var_id| in |bb|'s predecessors. in GetReachingDef()
276 // Set the value for |bb| to avoid an infinite recursion. in GetReachingDef()
362 // pointer (%2), instead of a float value. in ProcessLoad()
365 // chain until we get to a float value or a non-target var (i.e. a variable in ProcessLoad()
542 "Inconsistent value for duplicate edges."); in ApplyReplacements()
654 // For the cases the value assignment is invisible to DebugDeclare e.g., in AddDebugValuesForInvisibleDebugDecls()
664 // We want to specify the value for the variable using |defs_at_block_[bb]|, in AddDebugValuesForInvisibleDebugDecls()
676 Instruction* value = nullptr; in AddDebugValuesForInvisibleDebugDecls() local
677 if (value_id) value in AddDebugValuesForInvisibleDebugDecls()
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Druntime.py99 for key, value in iteritems(locals):
100 if value is not missing:
101 parent[key] = value
236 special `missing` value if it cannot be found.
293 "value was undefined because "
515 """Return a value from the given args, cycling through based on
525 def changed(self, *value):
526 """Return ``True`` if previously called with a different value
529 :param value: One or more values to compare to the last call.
531 if self._last_changed_value != value
[all...]
/third_party/skia/src/sfnt/
H A DSkOTTable_name.h22 static const SK_OT_ULONG TAG = SkOTTableTAG<SkOTTableName>::value;
44 } value; member
60 } value; member
102 } value; member
111 } value; variable
128 } value;
137 /** A value greater than 0x7FFF.
265 } value;
478 } value;
510 } value;
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dutrie2.cpp423 /* default UTrie2EnumValue() returns the input value itself */
425 enumSameValue(const void * /*context*/, uint32_t value) { in enumSameValue() argument
426 return value; in enumSameValue()
437 * - Skip a whole block if we know that it is filled with a single value,
440 * with a single value.
449 uint32_t value, prevValue, initialValue; in enumEitherTrie() local
480 /* get the enumeration value that corresponds to an initial-value trie data entry */ in enumEitherTrie()
577 value=enumValue(context, data32!=NULL ? data32[block+j] : idx[block+j]); in enumEitherTrie()
578 if(value! in enumEitherTrie()
[all...]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DNioByteStringTest.java378 public void write(byte value) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput()
383 public void write(byte[] value, int offset, int length) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput()
388 public void write(ByteBuffer value) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput()
393 public void writeLazy(byte[] value, int offset, int length) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput()
398 public void writeLazy(ByteBuffer value) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput()
400 value.array(), value.arrayOffset(), value.arrayOffset() + value.limit(), (byte) 0); in testWriteToShouldExposeInternalBufferToByteOutput()
475 CLASSNAME + " must equal another string with the same value", in testEquals()
[all...]
/third_party/python/Lib/test/
H A Dtest_code.py262 for attr, value in (
280 with self.subTest(attr=attr, value=value):
281 new_code = code.replace(**{attr: value})
282 self.assertEqual(getattr(new_code, attr), value)
459 def find_const(self, consts, value):
461 if v == value:
463 self.assertIn(value, consts) # raises an exception
500 co = compile(r'res = "str\0value!"', '?', 'exec')
501 v = self.find_const(co.co_consts, 'str\0value!')
[all...]
/third_party/python/Modules/_io/
H A Dstringio.c455 "Negative size value %zd", size); in _io_StringIO_truncate_impl()
639 initial_value as value: object(c_default="NULL") = ''
644 The initial_value argument sets the value of object. The newline
649 _io_StringIO___init___impl(stringio *self, PyObject *value, in _io_StringIO___init___impl() argument
678 "illegal newline value: %R", newline_obj); in _io_StringIO___init___impl()
681 if (value && value != Py_None && !PyUnicode_Check(value)) { in _io_StringIO___init___impl()
684 Py_TYPE(value)->tp_name); in _io_StringIO___init___impl()
724 /* Now everything is set up, resize buffer to size of initial value, in _io_StringIO___init___impl()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dinlined_vector.h88 inlined_vector_internal::IsAtLeastForwardIterator<Iterator>::value>;
91 !inlined_vector_internal::IsAtLeastForwardIterator<Iterator>::value>;
111 // Creates an empty inlined vector with a value-initialized allocator.
172 } else if (IsMemcpyOk::value && !other.storage_.GetIsAllocated()) { in InlinedVector()
195 absl::allocator_is_nothrow<allocator_type>::value ||
196 std::is_nothrow_move_constructible<value_type>::value)
198 if (IsMemcpyOk::value) {
228 absl::allocator_is_nothrow<allocator_type>::value) in noexcept()
230 if (IsMemcpyOk::value) { in noexcept()
479 if (IsMemcpyOk::value || othe in operator =()
[all...]
/third_party/skia/modules/svg/include/
H A DSkSVGTypes.h45 explicit SkSVGProperty(const T& value) : fState(SkSVGPropertyState::kValue) { in SkSVGProperty() argument
46 fValue.set(value); in SkSVGProperty()
49 explicit SkSVGProperty(T&& value) : fState(SkSVGPropertyState::kValue) { in SkSVGProperty() argument
50 fValue.set(std::move(value)); in SkSVGProperty()
74 void set(const T& value) { in set() argument
76 fValue.set(value); in set()
79 void set(T&& value) { in set() argument
81 fValue.set(std::move(value)); in set()
128 const SkScalar& value() const { return fValue; } in value() function in SkSVGLength
/third_party/spirv-tools/source/opt/
H A Dconstants.cpp111 uint64_t value = 0; in GetZeroExtendedValue() local
114 value = ic->GetU32BitValue(); in GetZeroExtendedValue()
116 value = ic->GetU64BitValue(); in GetZeroExtendedValue()
121 return value; in GetZeroExtendedValue()
130 int64_t value = 0; in GetSignExtendedValue() local
134 value = int64_t(ic->GetS32BitValue()); in GetSignExtendedValue()
136 value = ic->GetS64BitValue(); in GetSignExtendedValue()
141 return value; in GetSignExtendedValue()
147 // assignment (i.e., each constant is its own value). in ConstantManager()
306 // OpConstant{True|False} have the value embedde in GetConstantFromInst()
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/backend/gpu/
H A Dmali_kbase_model_dummy.h108 s32 value; member
143 u8 midgard_model_write_reg(void *h, u32 addr, u32 value);
145 u32 * const value);
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/hdi_operate/
H A Dhdi_get_handler.py70 for type_key, value in self.result_temp.items():
75 value["create_file"])),
79 value["config"]))
/drivers/peripheral/battery/interfaces/hdi_service/include/
H A Dbattery_interface_impl.h54 int32_t SetBatteryConfig(const std::string& sceneName, const std::string& value) override;
55 int32_t GetBatteryConfig(const std::string& sceneName, std::string& value) override;
56 int32_t IsBatteryConfigSupported(const std::string& sceneName, bool& value) override;
/drivers/peripheral/audio/hal/hdi_binder/server/src/
H A Dhdf_audio_input_event.c39 audioEvent.eventType = (evt.value == 0) ? AUDIO_DEVICE_REMOVE : AUDIO_DEVICE_ADD; in AudioAnalogHeadsetDeviceCheck()
66 AUDIO_FUNC_LOGD("evt.type = EV_SW5, code =0x%{public}d, value = %{public}d\n", evt.code, in AudioPnpInputCheck()
67 evt.value); in AudioPnpInputCheck()
75 AUDIO_FUNC_LOGD("evt.type = EV_KEY1, code = 0x%{public}x, value = %{public}d.", evt.code, evt.value); in AudioPnpInputCheck()
/drivers/peripheral/audio/supportlibs/alsa_adapter/include/
H A Dalsa_soundcard.h73 char *value; member
123 const struct AlsaMixerCtlElement *ctlElem, long *value);
131 const struct AlsaMixerCtlElement *ctlElem, long value);
/drivers/peripheral/codec/test/demo/heif/include/
H A Dbuffer_helper.h63 bool AddData(OHOS::HDI::Codec::Image::V2_0::PropertyType key, T& value) in AddData() argument
66 std::size_t valueSize = sizeof(value); in AddData()
82 ret = memcpy_s(p + keySize, valueSize, reinterpret_cast<uint8_t*>(&value), valueSize); in AddData()
/drivers/peripheral/codec/test/unittest/hdi_image/
H A Dtest_helper.h44 bool AddData(OHOS::HDI::Codec::Image::V2_0::PropertyType key, T& value) in AddData() argument
47 std::size_t valueSize = sizeof(value); in AddData()
60 ret = memcpy_s(p + keySize, valueSize, reinterpret_cast<uint8_t*>(&value), valueSize); in AddData()
/kernel/linux/linux-5.10/drivers/fpga/
H A Daltera-fpga2sdram.c59 int value; in alt_fpga2sdram_enable_show() local
61 regmap_read(priv->sdrctl, ALT_SDR_CTL_FPGAPORTRST_OFST, &value); in alt_fpga2sdram_enable_show()
63 return (value & priv->mask) == priv->mask; in alt_fpga2sdram_enable_show()
/kernel/linux/linux-5.10/drivers/firmware/xilinx/
H A Dzynqmp-debug.c41 * zynqmp_pm_argument_value() - Extract argument value from a PM-API request
44 * Return: Argument value in unsigned integer format on success
49 u64 value; in zynqmp_pm_argument_value() local
54 if (!kstrtou64(arg, 0, &value)) in zynqmp_pm_argument_value()
55 return value; in zynqmp_pm_argument_value()
/kernel/linux/linux-5.10/drivers/gpio/
H A Dgpio-xtensa.c62 *cpenable = 0; /* avoid uninitialized value warning */ in enable_cp()
90 int value) in xtensa_impwire_set_value()
113 int value) in xtensa_expstate_set_value()
117 u32 val = value ? BIT(offset) : 0; in xtensa_expstate_set_value()
89 xtensa_impwire_set_value(struct gpio_chip *gc, unsigned offset, int value) xtensa_impwire_set_value() argument
112 xtensa_expstate_set_value(struct gpio_chip *gc, unsigned offset, int value) xtensa_expstate_set_value() argument
H A Dgpio-bd71828.c19 int value) in bd71828_gpio_set()
23 u8 val = (value) ? BD71828_GPIO_OUT_HI : BD71828_GPIO_OUT_LO; in bd71828_gpio_set()
35 dev_err(bdgpio->chip.dev, "Could not set gpio to %d\n", value); in bd71828_gpio_set()
18 bd71828_gpio_set(struct gpio_chip *chip, unsigned int offset, int value) bd71828_gpio_set() argument
/kernel/linux/linux-5.10/drivers/acpi/apei/
H A Dapei-internal.h27 u64 value; member
47 ctx->value = input; in apei_exec_ctx_set_input()
52 return ctx->value; in apei_exec_ctx_get_output()
/kernel/linux/linux-5.10/arch/alpha/lib/
H A Dcsum_ipv6_magic.S94 extwl $0,2,$2 # e0 : begin folding the 64-bit value
104 extwl $0,2,$1 # e0 : fold 18-bit value
109 extwl $0,2,$1 # e0 : fold 17-bit value

Completed in 27 milliseconds

1...<<411412413414415416417418419420>>...1193