Home
last modified time | relevance | path

Searched refs:value (Results 651 - 675 of 27603) sorted by relevance

1...<<21222324252627282930>>...1105

/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_image.h240 /// For unsigned types, range is 0 to return value.
241 /// For signed types, range is return value - 0x8000U.
318 // Routines to set the entire image to a constant value.
320 void SetConstant_uint8 (uint8 value, in SetConstant_uint8() argument
326 SetConstant ((uint32) value, area); in SetConstant_uint8()
330 void SetConstant_uint8 (uint8 value) in SetConstant_uint8() argument
332 SetConstant (value, Bounds ()); in SetConstant_uint8()
335 void SetConstant_uint16 (uint16 value, in SetConstant_uint16() argument
341 SetConstant ((uint32) value, area); in SetConstant_uint16()
345 void SetConstant_uint16 (uint16 value) in SetConstant_uint16() argument
350 SetConstant_int16(int16 value, const dng_rect &area) SetConstant_int16() argument
360 SetConstant_int16(int16 value) SetConstant_int16() argument
365 SetConstant_uint32(uint32 value, const dng_rect &area) SetConstant_uint32() argument
375 SetConstant_uint32(uint32 value) SetConstant_uint32() argument
380 SetConstant_real32(real32 value, const dng_rect &area) SetConstant_real32() argument
398 SetConstant_real32(real32 value) SetConstant_real32() argument
[all...]
/third_party/python/Lib/ctypes/test/
H A Dtest_strings.py10 self.assertEqual(buf.value, b"abc")
13 buf.value = b"ABCD"
14 self.assertEqual(buf.value, b"ABCD")
17 buf.value = b"x"
18 self.assertEqual(buf.value, b"x")
22 self.assertEqual(buf.value, b"xZCD")
25 self.assertRaises(ValueError, setattr, buf, "value", b"aaaaaaaa")
26 self.assertRaises(TypeError, setattr, buf, "value", 42)
31 buf.value = b"Hello, World"
32 self.assertEqual(buf.value,
[all...]
/device/soc/hisilicon/common/platform/timer/
H A Dtimer_hi35xx.c25 static int32_t TimerHi35xxRegWrite(uint32_t value, volatile uint8_t *addr) in TimerHi35xxRegWrite() argument
29 OSAL_WRITEL(value, addr); in TimerHi35xxRegWrite()
44 uint32_t value = TimerHi35xxRegRead(info->regBase + HI35XX_TIMERx_CONTROL); in TimerHi35xxEnable() local
46 value &= ~TIMERx_CONTROL_TIMEREN; in TimerHi35xxEnable()
47 value |= (0x1 << TIMERx_CONTROL_TIMEREN_SHIFT); in TimerHi35xxEnable()
49 value &= ~TIMERx_CONTROL_TIMEREN; in TimerHi35xxEnable()
50 value |= (0x0 << TIMERx_CONTROL_TIMEREN_SHIFT); in TimerHi35xxEnable()
52 TimerHi35xxRegWrite(value, info->regBase + HI35XX_TIMERx_CONTROL); in TimerHi35xxEnable()
61 uint32_t value = TimerHi35xxRegRead(info->regBase + HI35XX_TIMERx_CONTROL); in TimerHi35xxSetMode() local
63 value in TimerHi35xxSetMode()
78 uint32_t value = TimerHi35xxRegRead(info->regBase + HI35XX_TIMERx_CONTROL); TimerHi35xxSetPre() local
106 uint32_t value = TimerHi35xxRegRead(info->regBase + HI35XX_TIMERx_CONTROL); TimerHi35xxIntEnable() local
129 uint32_t value = TimerHi35xxRegRead(info->regBase + HI35XX_TIMERx_CONTROL); TimerHi35xxTimerSize() local
142 TimerHi35xxTimerLoadSet(struct TimerHi35xxInfo *info, uint32_t value) TimerHi35xxTimerLoadSet() argument
188 uint32_t value = TimerHi35xxRegRead(regBase); TimerHi35xxScCtrlSet() local
276 unsigned int value; TimerHi35xxSetTimeout() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dcbs_vp9.c32 int32_t value; in cbs_vp9_read_s() local
38 av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid signed value at " in cbs_vp9_read_s()
45 value = sign ? -(int32_t)magnitude : magnitude; in cbs_vp9_read_s()
56 bits, value); in cbs_vp9_read_s()
59 *write_to = value; in cbs_vp9_read_s()
65 const int *subscripts, int32_t value) in cbs_vp9_write_s()
73 sign = value < 0; in cbs_vp9_write_s()
74 magnitude = sign ? -value : value; in cbs_vp9_write_s()
85 name, subscripts, bits, value); in cbs_vp9_write_s()
63 cbs_vp9_write_s(CodedBitstreamContext *ctx, PutBitContext *pbc, int width, const char *name, const int *subscripts, int32_t value) cbs_vp9_write_s() argument
98 uint32_t value; cbs_vp9_read_increment() local
130 cbs_vp9_write_increment(CodedBitstreamContext *ctx, PutBitContext *pbc, uint32_t range_min, uint32_t range_max, const char *name, uint32_t value) cbs_vp9_write_increment() argument
175 uint32_t value; cbs_vp9_read_le() local
209 cbs_vp9_write_le(CodedBitstreamContext *ctx, PutBitContext *pbc, int width, const char *name, const int *subscripts, uint32_t value) cbs_vp9_write_le() argument
[all...]
H A Dcbs_av1.c33 uint32_t zeroes, bits_value, value; in cbs_av1_read_uvlc() local
53 value = MAX_UINT_BITS(32); in cbs_av1_read_uvlc()
62 value = bits_value + (UINT32_C(1) << zeroes) - 1; in cbs_av1_read_uvlc()
93 NULL, bits, value); in cbs_av1_read_uvlc()
96 if (value < range_min || value > range_max) { in cbs_av1_read_uvlc()
99 name, value, range_min, range_max); in cbs_av1_read_uvlc()
103 *write_to = value; in cbs_av1_read_uvlc()
108 const char *name, uint32_t value, in cbs_av1_write_uvlc()
114 if (value < range_mi in cbs_av1_write_uvlc()
107 cbs_av1_write_uvlc(CodedBitstreamContext *ctx, PutBitContext *pbc, const char *name, uint32_t value, uint32_t range_min, uint32_t range_max) cbs_av1_write_uvlc() argument
150 uint64_t value; cbs_av1_read_leb128() local
180 cbs_av1_write_leb128(CodedBitstreamContext *ctx, PutBitContext *pbc, const char *name, uint64_t value) cbs_av1_write_leb128() argument
214 uint32_t m, v, extra_bit, value; cbs_av1_read_ns() local
260 cbs_av1_write_ns(CodedBitstreamContext *ctx, PutBitContext *pbc, uint32_t n, const char *name, const int *subscripts, uint32_t value) cbs_av1_write_ns() argument
313 uint32_t value; cbs_av1_read_increment() local
346 cbs_av1_write_increment(CodedBitstreamContext *ctx, PutBitContext *pbc, uint32_t range_min, uint32_t range_max, const char *name, uint32_t value) cbs_av1_write_increment() argument
391 uint32_t value; cbs_av1_read_subexp() local
437 cbs_av1_write_subexp(CodedBitstreamContext *ctx, PutBitContext *pbc, uint32_t range_max, const char *name, const int *subscripts, uint32_t value) cbs_av1_write_subexp() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dtherm.c84 s16 value = nvbios_rd16(bios, entry + 1); in nvbios_therm_sensor_parse() local
88 thrs_section = value; in nvbios_therm_sensor_parse()
89 if (value > 0) in nvbios_therm_sensor_parse()
102 sensor->thrs_critical.temp = (value & 0xff0) >> 4; in nvbios_therm_sensor_parse()
103 sensor->thrs_critical.hysteresis = value & 0xf; in nvbios_therm_sensor_parse()
109 sensor->thrs_down_clock.temp = (value & 0xff0) >> 4; in nvbios_therm_sensor_parse()
110 sensor->thrs_down_clock.hysteresis = value & 0xf; in nvbios_therm_sensor_parse()
116 sensor->thrs_fan_boost.temp = (value & 0xff0) >> 4; in nvbios_therm_sensor_parse()
117 sensor->thrs_fan_boost.hysteresis = value & 0xf; in nvbios_therm_sensor_parse()
123 sensor->offset_num = value; in nvbios_therm_sensor_parse()
166 s16 value = nvbios_rd16(bios, entry + 1); nvbios_therm_fan_parse() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dtherm.c84 s16 value = nvbios_rd16(bios, entry + 1); in nvbios_therm_sensor_parse() local
88 thrs_section = value; in nvbios_therm_sensor_parse()
89 if (value > 0) in nvbios_therm_sensor_parse()
102 sensor->thrs_critical.temp = (value & 0xff0) >> 4; in nvbios_therm_sensor_parse()
103 sensor->thrs_critical.hysteresis = value & 0xf; in nvbios_therm_sensor_parse()
109 sensor->thrs_down_clock.temp = (value & 0xff0) >> 4; in nvbios_therm_sensor_parse()
110 sensor->thrs_down_clock.hysteresis = value & 0xf; in nvbios_therm_sensor_parse()
116 sensor->thrs_fan_boost.temp = (value & 0xff0) >> 4; in nvbios_therm_sensor_parse()
117 sensor->thrs_fan_boost.hysteresis = value & 0xf; in nvbios_therm_sensor_parse()
123 sensor->offset_num = value; in nvbios_therm_sensor_parse()
166 s16 value = nvbios_rd16(bios, entry + 1); nvbios_therm_fan_parse() local
[all...]
/third_party/gn/src/gn/
H A Dmetadata.cc207 const Value& value, in RebaseValue()
209 switch (value.type()) { in RebaseValue()
211 return this->RebaseStringValue(settings, rebase_dir, value, err); in RebaseValue()
213 return this->RebaseListValue(settings, rebase_dir, value, err); in RebaseValue()
215 return this->RebaseScopeValue(settings, rebase_dir, value, err); in RebaseValue()
217 return std::make_pair(value, true); in RebaseValue()
224 const Value& value, in RebaseStringValue()
226 if (!value.VerifyTypeIs(Value::STRING, err)) in RebaseStringValue()
227 return std::make_pair(value, false); in RebaseStringValue()
229 /*as_file = */ true, value, er in RebaseStringValue()
205 RebaseValue(const BuildSettings* settings, const SourceDir& rebase_dir, const Value& value, Err* err) const RebaseValue() argument
221 RebaseStringValue( const BuildSettings* settings, const SourceDir& rebase_dir, const Value& value, Err* err) const RebaseStringValue() argument
237 RebaseListValue(const BuildSettings* settings, const SourceDir& rebase_dir, const Value& value, Err* err) const RebaseListValue() argument
254 RebaseScopeValue(const BuildSettings* settings, const SourceDir& rebase_dir, const Value& value, Err* err) const RebaseScopeValue() argument
[all...]
/third_party/mesa3d/src/freedreno/drm/msm/
H A Dmsm_pipe.c33 query_param(struct fd_pipe *pipe, uint32_t param, uint64_t *value) in query_param() argument
47 *value = req.value; in query_param()
53 query_queue_param(struct fd_pipe *pipe, uint32_t param, uint64_t *value) in query_queue_param() argument
57 .data = VOID2U64(value), in query_queue_param()
60 .len = sizeof(*value), in query_queue_param()
74 uint64_t *value) in msm_pipe_get_param()
80 *value = msm_pipe->gpu_id; in msm_pipe_get_param()
83 *value = msm_pipe->gmem; in msm_pipe_get_param()
86 *value in msm_pipe_get_param()
73 msm_pipe_get_param(struct fd_pipe *pipe, enum fd_param_id param, uint64_t *value) msm_pipe_get_param() argument
110 set_param(struct fd_pipe *pipe, uint32_t param, uint64_t value) set_param() argument
124 msm_pipe_set_param(struct fd_pipe *pipe, enum fd_param_id param, uint64_t value) msm_pipe_set_param() argument
227 uint64_t value; get_param() local
[all...]
/third_party/python/Lib/lib2to3/
H A Dpatcomp.py33 type, value, start, end, line_text = quintuple
102 name = nodes[0].value
143 value = str(literals.evalString(node.value))
144 return pytree.LeafPattern(_type_of_literal(value), value)
146 value = node.value
147 if value.isupper():
148 if value no
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A Dtype_traits.h29 /// the value may therefore need to be explicitly converted before being used.
34 static const bool value = member in llvm::is_integral_or_enum
35 !std::is_class<UnderlyingT>::value && // Filter conversion operators.
36 !std::is_pointer<UnderlyingT>::value &&
37 !std::is_floating_point<UnderlyingT>::value &&
38 (std::is_enum<UnderlyingT>::value ||
39 std::is_convertible<UnderlyingT, unsigned long long>::value);
48 T, typename std::enable_if<std::is_pointer<T>::value>::type> {
59 T, typename std::enable_if<std::is_pointer<T>::value>::type> {
69 T, typename std::enable_if<std::is_pointer<T>::value>
124 static constexpr bool value = decltype(get((T*)nullptr))::value; global() member
132 static constexpr bool value = decltype(get((T*)nullptr))::value; global() member
173 static constexpr bool value = global() member in llvm::is_trivially_copyable
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DMapEntryLite.java70 private final V value; field in MapEntryLite
77 this.value = defaultValue; in MapEntryLite()
81 private MapEntryLite(Metadata<K, V> metadata, K key, V value) { in MapEntryLite() argument
84 this.value = value; in MapEntryLite()
92 return value; in getValue()
107 static <K, V> void writeTo(CodedOutputStream output, Metadata<K, V> metadata, K key, V value) in writeTo() argument
110 FieldSet.writeElement(output, metadata.valueType, VALUE_FIELD_NUMBER, value); in writeTo()
113 static <K, V> int computeSerializedSize(Metadata<K, V> metadata, K key, V value) { in computeSerializedSize() argument
115 + FieldSet.computeElementSize(metadata.valueType, VALUE_FIELD_NUMBER, value); in computeSerializedSize()
119 parseField( CodedInputStream input, ExtensionRegistryLite extensionRegistry, WireFormat.FieldType type, T value) parseField() argument
144 serializeTo(CodedOutputStream output, int fieldNumber, K key, V value) serializeTo() argument
156 computeMessageSize(int fieldNumber, K key, V value) computeMessageSize() argument
[all...]
H A DExtensionSchemaFull.java99 Object value = null; in parseExtension()
105 value = list; in parseExtension()
112 value = list; in parseExtension()
119 value = list; in parseExtension()
126 value = list; in parseExtension()
133 value = list; in parseExtension()
140 value = list; in parseExtension()
147 value = list; in parseExtension()
154 value = list; in parseExtension()
161 value in parseExtension()
[all...]
H A DExtensionSchemaLite.java82 Object value = null; in parseExtension()
88 value = list; in parseExtension()
95 value = list; in parseExtension()
102 value = list; in parseExtension()
109 value = list; in parseExtension()
116 value = list; in parseExtension()
123 value = list; in parseExtension()
130 value = list; in parseExtension()
137 value = list; in parseExtension()
144 value in parseExtension()
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuSeedBuilder.cpp72 SeedBuilder& operator<< (SeedBuilder& builder, bool value) in operator <<() argument
74 const deUint8 val = (value ? 54: 7); in operator <<()
80 SeedBuilder& operator<< (SeedBuilder& builder, deInt8 value) in operator <<() argument
82 const deInt8 val = value ^ 75; in operator <<()
88 SeedBuilder& operator<< (SeedBuilder& builder, deUint8 value) in operator <<() argument
90 const deUint8 val = value ^ 140u; in operator <<()
96 SeedBuilder& operator<< (SeedBuilder& builder, deInt16 value) in operator <<() argument
98 const deInt16 val = value ^ 555; in operator <<()
109 SeedBuilder& operator<< (SeedBuilder& builder, deUint16 value) in operator <<() argument
111 const deUint16 val = value in operator <<()
122 operator <<(SeedBuilder& builder, deInt32 value) operator <<() argument
137 operator <<(SeedBuilder& builder, deUint32 value) operator <<() argument
152 operator <<(SeedBuilder& builder, deInt64 value) operator <<() argument
172 operator <<(SeedBuilder& builder, deUint64 value) operator <<() argument
192 operator <<(SeedBuilder& builder, float value) operator <<() argument
213 operator <<(SeedBuilder& builder, double value) operator <<() argument
237 operator <<(SeedBuilder& builder, const std::string& value) operator <<() argument
[all...]
/third_party/node/deps/v8/src/base/
H A Doptional.h44 template <typename T, bool = std::is_trivially_destructible<T>::value>
79 // it doesn't contain a value. Union members must be initialized for the
120 // it doesn't contain a value. Union members must be initialized for the
128 // constexpr if is_trivially_{copy,move}_constructible<T>::value is true
134 template <typename T, bool = std::is_trivially_copy_constructible<T>::value,
135 bool = std::is_trivially_move_constructible<T>::value>
263 void InitOrAssign(U&& value) { in InitOrAssign() argument
265 storage_.value_ = std::forward<U>(value); in InitOrAssign()
267 storage_.Init(std::forward<U>(value)); in InitOrAssign()
340 bool, std::is_constructible<T, Optional<U>&>::value ||
499 Optional(U&& value) Optional() argument
510 Optional(U&& value) Optional() argument
594 T& value() & { value() function in v8::base::Optional
599 const T& value() const & { value() function in v8::base::Optional
604 T&& value() && { value() function in v8::base::Optional
609 const T&& value() const && { value() function in v8::base::Optional
793 operator ==(const Optional<T>& opt, const U& value) operator ==() argument
798 operator ==(const U& value, const Optional<T>& opt) operator ==() argument
803 operator !=(const Optional<T>& opt, const U& value) operator !=() argument
808 operator !=(const U& value, const Optional<T>& opt) operator !=() argument
813 operator <(const Optional<T>& opt, const U& value) operator <() argument
818 operator <(const U& value, const Optional<T>& opt) operator <() argument
823 operator <=(const Optional<T>& opt, const U& value) operator <=() argument
828 operator <=(const U& value, const Optional<T>& opt) operator <=() argument
833 operator >(const Optional<T>& opt, const U& value) operator >() argument
838 operator >(const U& value, const Optional<T>& opt) operator >() argument
843 operator >=(const Optional<T>& opt, const U& value) operator >=() argument
848 operator >=(const U& value, const Optional<T>& opt) operator >=() argument
853 make_optional(T&& value) make_optional() argument
[all...]
/kernel/linux/linux-5.10/arch/parisc/math-emu/
H A Dfloat.h74 #define Deposit_ssign(object,value) Bitfield_deposit(value,0,1,object)
75 #define Deposit_sexponent(object,value) Bitfield_deposit(value,1,8,object)
76 #define Deposit_smantissa(object,value) Bitfield_deposit(value,9,23,object)
77 #define Deposit_shigh2mantissa(object,value) Bitfield_deposit(value,9,2,object)
78 #define Deposit_sexponentmantissa(object,value) \
79 Bitfield_deposit(value,
[all...]
/kernel/linux/linux-6.6/arch/parisc/math-emu/
H A Dfloat.h74 #define Deposit_ssign(object,value) Bitfield_deposit(value,0,1,object)
75 #define Deposit_sexponent(object,value) Bitfield_deposit(value,1,8,object)
76 #define Deposit_smantissa(object,value) Bitfield_deposit(value,9,23,object)
77 #define Deposit_shigh2mantissa(object,value) Bitfield_deposit(value,9,2,object)
78 #define Deposit_sexponentmantissa(object,value) \
79 Bitfield_deposit(value,
[all...]
/kernel/linux/linux-5.10/drivers/gpu/host1x/
H A Dmipi.c142 static inline void tegra_mipi_writel(struct tegra_mipi *mipi, u32 value, in tegra_mipi_writel() argument
145 writel(value, mipi->regs + (offset << 2)); in tegra_mipi_writel()
150 u32 value; in tegra_mipi_power_up() local
157 value = tegra_mipi_readl(mipi, MIPI_CAL_BIAS_PAD_CFG0); in tegra_mipi_power_up()
158 value &= ~MIPI_CAL_BIAS_PAD_PDVCLAMP; in tegra_mipi_power_up()
161 value |= MIPI_CAL_BIAS_PAD_E_VCLAMP_REF; in tegra_mipi_power_up()
163 tegra_mipi_writel(mipi, value, MIPI_CAL_BIAS_PAD_CFG0); in tegra_mipi_power_up()
165 value = tegra_mipi_readl(mipi, MIPI_CAL_BIAS_PAD_CFG2); in tegra_mipi_power_up()
166 value &= ~MIPI_CAL_BIAS_PAD_PDVREG; in tegra_mipi_power_up()
167 tegra_mipi_writel(mipi, value, MIPI_CAL_BIAS_PAD_CFG in tegra_mipi_power_up()
176 u32 value; tegra_mipi_power_down() local
300 u32 value; tegra_mipi_finish_calibration() local
318 u32 value; tegra_mipi_start_calibration() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/host1x/
H A Dmipi.c142 static inline void tegra_mipi_writel(struct tegra_mipi *mipi, u32 value, in tegra_mipi_writel() argument
145 writel(value, mipi->regs + (offset << 2)); in tegra_mipi_writel()
150 u32 value; in tegra_mipi_power_up() local
157 value = tegra_mipi_readl(mipi, MIPI_CAL_BIAS_PAD_CFG0); in tegra_mipi_power_up()
158 value &= ~MIPI_CAL_BIAS_PAD_PDVCLAMP; in tegra_mipi_power_up()
161 value |= MIPI_CAL_BIAS_PAD_E_VCLAMP_REF; in tegra_mipi_power_up()
163 tegra_mipi_writel(mipi, value, MIPI_CAL_BIAS_PAD_CFG0); in tegra_mipi_power_up()
165 value = tegra_mipi_readl(mipi, MIPI_CAL_BIAS_PAD_CFG2); in tegra_mipi_power_up()
166 value &= ~MIPI_CAL_BIAS_PAD_PDVREG; in tegra_mipi_power_up()
167 tegra_mipi_writel(mipi, value, MIPI_CAL_BIAS_PAD_CFG in tegra_mipi_power_up()
176 u32 value; tegra_mipi_power_down() local
300 u32 value; tegra_mipi_finish_calibration() local
318 u32 value; tegra_mipi_start_calibration() local
[all...]
/third_party/icu/icu4c/source/layoutex/
H A DLXUtilities.cpp19 le_int8 LXUtilities::highBit(le_int32 value) in highBit() argument
21 if (value <= 0) { in highBit()
27 if (value >= 1 << 16) { in highBit()
28 value >>= 16; in highBit()
32 if (value >= 1 << 8) { in highBit()
33 value >>= 8; in highBit()
37 if (value >= 1 << 4) { in highBit()
38 value >>= 4; in highBit()
42 if (value >= 1 << 2) { in highBit()
43 value >> in highBit()
55 search(le_int32 value, const le_int32 array[], le_int32 count) search() argument
[all...]
/third_party/libinput/test/
H A Dlitest-device-wacom-cintiq-pro-16-finger.c30 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN },
31 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN },
32 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN },
33 { .type = EV_ABS, .code = ABS_MT_ORIENTATION, .value = 0 },
34 { .type = EV_ABS, .code = ABS_MT_TRACKING_ID, .value = LITEST_AUTO_ASSIGN },
35 { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN },
36 { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN },
37 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
42 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN },
43 { .type = EV_ABS, .code = ABS_X, .value
[all...]
H A Dlitest-device-wacom-cintiq-13hdt-finger.c30 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN },
31 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN },
32 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN },
33 { .type = EV_ABS, .code = ABS_MT_ORIENTATION, .value = 0 },
34 { .type = EV_ABS, .code = ABS_MT_TRACKING_ID, .value = LITEST_AUTO_ASSIGN },
35 { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN },
36 { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN },
37 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
42 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN },
43 { .type = EV_ABS, .code = ABS_X, .value
[all...]
/drivers/hdf_core/interfaces/inner_api/utils/
H A Dhdf_sbuf.h54 SBUF_TYPE_MAX, /* Maximum value of the SBUF type */
62 * @param writeSize Indicates the size of the data segment to write. The maximum value is 512 KB.
73 * @param data Indicates the pointer to the data to write. The value cannot be a null pointer.
74 * @param writeSize Indicates the size of the data to write. The value cannot be <b>0</b>.
85 * @param value Indicates the 64-bit unsigned integer to write.
90 bool HdfSbufWriteUint64(struct HdfSBuf *sbuf, uint64_t value);
96 * @param value Indicates the 32-bit unsigned integer to write.
101 bool HdfSbufWriteUint32(struct HdfSBuf *sbuf, uint32_t value);
107 * @param value Indicates the 16-bit unsigned integer to write.
112 bool HdfSbufWriteUint16(struct HdfSBuf *sbuf, uint16_t value);
[all...]
/kernel/linux/linux-5.10/drivers/staging/media/tegra-vde/
H A Dtrace.h15 u32 offset, u32 value),
16 TP_ARGS(vde, base, offset, value),
20 __field(u32, value)
25 __entry->value = value;
28 __entry->value)
33 u32 offset, u32 value),
34 TP_ARGS(vde, base, offset, value));
37 u32 offset, u32 value),
38 TP_ARGS(vde, base, offset, value));
[all...]

Completed in 14 milliseconds

1...<<21222324252627282930>>...1105