Home
last modified time | relevance | path

Searched +full:input +full:- +full:value (Results 1 – 25 of 1191) sorted by relevance

12345678910>>...48

/OK3568_Linux_fs/kernel/Documentation/sparc/oradax/
H A Ddax-hv-api.txt3 Publication date 2017-09-25 08:21
5 Extracted via "pdftotext -f 547 -l 572 -layout sun4v_20170925.pdf"
16 live-migration and other system management activities.
20 …high speed processoring of database-centric operations. The coprocessors may support one or more of
28 …e Completion Area and, unless execution order is specifically restricted through the use of serial-
45 …device node in the guest MD (Section 8.24.17, “Database Analytics Accelerators (DAX) virtual-device
51 36.1.1.1. "ORCL,sun4v-dax" Device Compatibility
54 • No-op/Sync
58 • Scan Value
60 • Inverted Scan Value
[all …]
/OK3568_Linux_fs/kernel/drivers/platform/x86/
H A Dclassmate-laptop.c1 // SPDX-License-Identifier: GPL-2.0-or-later
13 #include <linux/input.h>
37 * Generic input device code.
50 return -ENOMEM; in cmpc_add_acpi_notify_device()
51 inputdev->name = name; in cmpc_add_acpi_notify_device()
52 inputdev->dev.parent = &acpi->dev; in cmpc_add_acpi_notify_device()
59 dev_set_drvdata(&acpi->dev, inputdev); in cmpc_add_acpi_notify_device()
65 struct input_dev *inputdev = dev_get_drvdata(&acpi->dev); in cmpc_remove_acpi_notify_device()
76 struct acpi_object_list input; in cmpc_start_accel_v4() local
80 param[0].integer.value = 0x3; in cmpc_start_accel_v4()
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mmc/
H A Dcdns,sdhci.yaml1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Masahiro Yamada <yamada.masahiro@socionext.com>
11 - Piotr Sroka <piotrs@cadence.com>
14 - $ref: mmc-controller.yaml
19 - enum:
20 - socionext,uniphier-sd4hc
21 - const: cdns,sd4hc
32 # PHY DLL input delays:
[all …]
/OK3568_Linux_fs/kernel/Documentation/hid/
H A Dhid-sensor.rst20 INPUT(1)[INPUT]
26 Logical Minimum(-32767)
35 The report is indicating "sensor page (0x20)" contains an accelerometer-3D (0x73).
36 This accelerometer-3D has some fields. Here for example field 2 is motion intensity
37 (0x045f) with a logical minimum value of -32767 and logical maximum of 32767. The
38 order of fields and length of each field is important as the input event raw
46 data fields. It is difficult to have a common input event to user space applications,
51 - Core hid driver
52 - Individual sensor processing part (sensor drivers)
55 -----------
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dstep.cpp15 input(std::move(input_)), in Step()
18 assert(input->getType() == type::Number); in Step()
22 const EvaluationResult evaluatedInput = input->evaluate(params); in evaluate()
29 return EvaluationError { "Input is not a number." }; in evaluate()
38 return stops.rbegin()->second->evaluate(params); in evaluate()
40 return stops.begin()->second->evaluate(params); in evaluate()
42 return std::prev(it)->second->evaluate(params); in evaluate()
47 visit(*input); in eachChild()
49 visit(*it->second); in eachChild()
62 return *input == *(rhs->input) && Expression::childrenEqual(stops, rhs->stops); in operator ==()
[all …]
H A Dinterpolate.cpp19 …static_assert(util::Interpolatable<T>::value, "Interpolate expression requires an interpolatable v… in InterpolateImpl()
23 const EvaluationResult evaluatedInput = input->evaluate(params); in evaluate()
30 return EvaluationError { "Input is not a number." }; in evaluate()
39 return stops.rbegin()->second->evaluate(params); in evaluate()
41 return stops.begin()->second->evaluate(params); in evaluate()
43 float t = interpolationFactor({ std::prev(it)->first, it->first }, x); in evaluate()
46 return std::prev(it)->second->evaluate(params); in evaluate()
49 return it->second->evaluate(params); in evaluate()
52 EvaluationResult lower = std::prev(it)->second->evaluate(params); in evaluate()
56 EvaluationResult upper = it->second->evaluate(params); in evaluate()
[all …]
H A Dlength.cpp10 input(std::move(input_)) { in Length()
14 const EvaluationResult value = input->evaluate(params); in evaluate() local
15 if (!value) return value; in evaluate()
16 return value->match( in evaluate()
20 [] (const std::vector<Value>& v) { in evaluate()
23 [&] (const auto&) -> EvaluationResult { in evaluate()
24 …return EvaluationError { "Expected value to be of type string or array, but found " + toString(typ… in evaluate()
29 visit(*input); in eachChild()
35 return *eq->input == *input; in operator ==()
40 std::vector<optional<Value>> Length::possibleOutputs() const { in possibleOutputs()
[all …]
H A Dmatch.cpp12 visit(*input); in eachChild()
23 return (*input == *(rhs->input) && in operator ==()
24 *otherwise == *(rhs->otherwise) && in operator ==()
25 Expression::childrenEqual(branches, rhs->branches)); in operator ==()
31 std::vector<optional<Value>> Match<T>::possibleOutputs() const { in possibleOutputs()
32 std::vector<optional<Value>> result; in possibleOutputs()
34 for (auto& output : branch.second->possibleOutputs()) { in possibleOutputs()
38 for (auto& output : otherwise->possibleOutputs()) { in possibleOutputs()
45 mbgl::Value Match<T>::serialize() const { in serialize()
46 std::vector<mbgl::Value> serialized; in serialize()
[all …]
/OK3568_Linux_fs/kernel/Documentation/input/
H A Devent-codes.rst1 .. _input-event-codes:
4 Input event codes
8 The input protocol uses a map of types and codes to express input device values
12 A single hardware event generates multiple input events. Each input event
13 contains the new value of a single data item. A special event type, EV_SYN, is
14 used to separate input events into packets of input data changes occurring at
16 input event encompassing a type, code, and value.
18 The input protocol is a stateful protocol. Events are emitted only when values
20 input subsystem; drivers do not need to maintain the state and may attempt to
22 event code values using the EVIOCG* ioctls defined in linux/input.h. The event
[all …]
H A Dinput-programming.rst2 Creating an input device driver
8 Here comes a very simple example of an input device driver. The device has
12 #include <linux/input.h>
34 return -EBUSY;
40 error = -ENOMEM;
44 button_dev->evbit[0] = BIT_MASK(EV_KEY);
45 button_dev->keybit[BIT_WORD(BTN_0)] = BIT_MASK(BTN_0);
74 First it has to include the <linux/input.h> file, which interfaces to the
75 input subsystem. This provides all the definitions needed.
81 Then it allocates a new input device structure with input_allocate_device()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/
H A Dnumeric1 // <numeric> -*- C++ -*-
3 // Copyright (C) 2001-2020 Free Software Foundation, Inc.
28 * Hewlett-Packard Company
34 * in supporting documentation. Hewlett-Packard Company makes no
73 * complex number types, random number generation, numeric (n-at-a-time)
92 static_assert(is_unsigned<_Up>::value, "result type must be unsigned");
94 "result type must be at least as wide as the input type");
95 return __val < 0 ? -(_Up)__val : (_Up)__val;
105 static_assert(is_unsigned<_Tp>::value, "type must be unsigned");
125 // These were used in drafts of SD-6:
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/
H A Dnumeric1 // <numeric> -*- C++ -*-
3 // Copyright (C) 2001-2020 Free Software Foundation, Inc.
28 * Hewlett-Packard Company
34 * in supporting documentation. Hewlett-Packard Company makes no
73 * complex number types, random number generation, numeric (n-at-a-time)
92 static_assert(is_unsigned<_Up>::value, "result type must be unsigned");
94 "result type must be at least as wide as the input type");
95 return __val < 0 ? -(_Up)__val : (_Up)__val;
105 static_assert(is_unsigned<_Tp>::value, "type must be unsigned");
125 // These were used in drafts of SD-6:
[all …]
/OK3568_Linux_fs/kernel/drivers/input/keyboard/
H A Dadc-keys.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * Input driver for resistor ladder connected on ADC
11 #include <linux/input.h>
32 static void adc_keys_poll(struct input_dev *input) in adc_keys_poll() argument
34 struct adc_keys_state *st = input_get_drvdata(input); in adc_keys_poll()
35 int i, value, ret; in adc_keys_poll() local
39 ret = iio_read_channel_processed(st->channel, &value); in adc_keys_poll()
42 value = st->keyup_voltage; in adc_keys_poll()
44 for (i = 0; i < st->num_keys; i++) { in adc_keys_poll()
45 diff = abs(st->map[i].voltage - value); in adc_keys_poll()
[all …]
H A Dgpio_keys_polled.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2007-2010 Gabor Juhos <juhosg@openwrt.org>
8 * This file was based on: /drivers/input/misc/cobalt_btns.c
11 * also was based on: /drivers/input/keyboard/gpio_keys.c
18 #include <linux/input.h>
26 #define DRV_NAME "gpio-keys-polled"
36 struct input_dev *input; member
44 static void gpio_keys_button_event(struct input_dev *input, in gpio_keys_button_event() argument
48 struct gpio_keys_polled_dev *bdev = input_get_drvdata(input); in gpio_keys_button_event()
49 unsigned int type = button->type ?: EV_KEY; in gpio_keys_button_event()
[all …]
/OK3568_Linux_fs/external/xserver/config/
H A Dfdi2iclass.py5 # http://cgit.freedesktop.org/media-player-info/tree/tools/fdi2mpi.py
17 # fur- nished to do so, subject to the following conditions:
24 # FIT- NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
34 'input.product': 'MatchProduct',
36 'input.vendor': 'MatchVendor',
45 'input.keys': 'MatchIsKeyboard',
46 'input.keyboard': 'MatchIsKeyboard',
47 'input.keypad': 'MatchIsKeyboard',
48 'input.mouse': 'MatchIsPointer',
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dinput.h1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 1999-2002 Vojtech Pavlik
11 #include <uapi/linux/input.h>
17 * In-kernel definitions.
28 * struct input_value - input value representation
29 * @type: type of value (EV_KEY, EV_ABS, etc)
30 * @code: the value code
31 * @value: the value
36 __s32 value; member
47 * struct input_dev - represents an input device
[all …]
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dsun4i-a10-inet9f-rev03.dts4 * This file is dual-licensed: you can use it either under the terms
43 /dts-v1/;
44 #include "sun4i-a10.dtsi"
45 #include "sunxi-common-regulators.dtsi"
46 #include <dt-bindings/gpio/gpio.h>
47 #include <dt-bindings/input/input.h>
48 #include <dt-bindings/interrupt-controller/irq.h>
51 model = "iNet-9F Rev 03";
52 compatible = "inet-tek,inet9f-rev03", "allwinner,sun4i-a10";
59 stdout-path = "serial0:115200n8";
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/hal_g6/phy/rf/
H A Dhalrf_dbg_cmd.c58 {"-h", HALRF_HELP},
91 void halrf_cmd_parser(struct rf_info *rf, char input[][RF_MAX_ARGV], in halrf_cmd_parser()
95 struct rf_dbg_cmd_info *rf_dbg_cmd = &rf->rf_dbg_cmd_i; in halrf_cmd_parser()
100 u32 halrf_ary_size = rf_dbg_cmd->cmd_size; in halrf_cmd_parser()
102 RF_DBG_CNSL(out_len, used, output + used, out_len - used, "\n"); in halrf_cmd_parser()
107 if (_os_strcmp(halrf_cmd_i[i].name, input[0]) == 0) { in halrf_cmd_parser()
113 RF_DBG_CNSL(out_len, used, output + used, out_len - used, in halrf_cmd_parser()
121 RF_DBG_CNSL(out_len, used, output + used, out_len - used, in halrf_cmd_parser()
124 for (i = 0; i < halrf_ary_size - 1; i++) in halrf_cmd_parser()
125 RF_DBG_CNSL(out_len, used, output + used, out_len - used, in halrf_cmd_parser()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/hal_g6/phy/rf/
H A Dhalrf_dbg_cmd.c58 {"-h", HALRF_HELP},
91 void halrf_cmd_parser(struct rf_info *rf, char input[][RF_MAX_ARGV], in halrf_cmd_parser()
95 struct rf_dbg_cmd_info *rf_dbg_cmd = &rf->rf_dbg_cmd_i; in halrf_cmd_parser()
100 u32 halrf_ary_size = rf_dbg_cmd->cmd_size; in halrf_cmd_parser()
102 RF_DBG_CNSL(out_len, used, output + used, out_len - used, "\n"); in halrf_cmd_parser()
107 if (_os_strcmp(halrf_cmd_i[i].name, input[0]) == 0) { in halrf_cmd_parser()
113 RF_DBG_CNSL(out_len, used, output + used, out_len - used, in halrf_cmd_parser()
121 RF_DBG_CNSL(out_len, used, output + used, out_len - used, in halrf_cmd_parser()
124 for (i = 0; i < halrf_ary_size - 1; i++) in halrf_cmd_parser()
125 RF_DBG_CNSL(out_len, used, output + used, out_len - used, in halrf_cmd_parser()
[all …]
/OK3568_Linux_fs/buildroot/package/input-event-daemon/
H A D0004-Support-key-press-and-release-events.patch2 From: Jeffy Chen <jeffy.chen@rock-chips.com>
8 POWER:1 = /usr/bin/power-key.sh press
9 POWER:0 = /usr/bin/power-key.sh release
13 Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
14 ---
15 input-event-daemon.c | 30 +++++++++++++++++++++---------
16 input-event-daemon.h | 1 +
17 2 files changed, 22 insertions(+), 9 deletions(-)
19 diff --git a/input-event-daemon.c b/input-event-daemon.c
21 --- a/input-event-daemon.c
[all …]
/OK3568_Linux_fs/u-boot/examples/standalone/
H A Dsmc91111_eeprom.c5 * SPDX-License-Identifier: GPL-2.0+
8 * - Wolfgang Denk, DENX Software Engineering, wd@denx.de
9 * Das U-Boot
10 * - Ladislav Michl ladis@linux-mips.org
11 * A rejected patch on the U-Boot mailing list
29 int write_eeprom_reg (struct eth_device *dev, int value, int reg);
37 int c, i, j, done, line, reg, value, start, what; in smc91111_eeprom() local
38 char input[50]; in smc91111_eeprom() local
47 printf ("Actual U-Boot ABI version %d\n", in smc91111_eeprom()
76 c -= ('a' - 'A'); in smc91111_eeprom()
[all …]
/OK3568_Linux_fs/kernel/drivers/hid/
H A Dwacom_wac.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * drivers/input/tablet/wacom_wac.c
5 * USB Wacom tablet support - Wacom specific code
13 #include <linux/input/mt.h>
29 * 2^14/pi is a good approximation on Intuos5 and 3rd-gen Bamboo
46 * 8th value means AC online and show 100% capacity.
60 bool changed = battery->bat_status != bat_status || in __wacom_notify_battery()
61 battery->battery_capacity != bat_capacity || in __wacom_notify_battery()
62 battery->bat_charging != bat_charging || in __wacom_notify_battery()
63 battery->bat_connected != bat_connected || in __wacom_notify_battery()
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/pinctrl/
H A Dpinctrl-single.txt1 One-register-per-pin type device tree based pinctrl driver
4 - compatible : "pinctrl-single" or "pinconf-single".
5 "pinctrl-single" means that pinconf isn't supported.
6 "pinconf-single" means that generic pinconf is supported.
8 - reg : offset and length of the register set for the mux registers
10 - #pinctrl-cells : number of cells in addition to the index, set to 1
11 for pinctrl-single,pins and 2 for pinctrl-single,bits
13 - pinctrl-single,register-width : pinmux register access width in bits
15 - pinctrl-single,function-mask : mask of allowed pinmux function bits
19 - pinctrl-single,function-off : function off mode for disabled state if
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/templates/
H A Dprojectconf.html5 {% block title %} BitBake variables - {{project.name}} - Toaster {% endblock %}
13 <span class="js-config-var-name js-config-var-managed-name">DISTRO</span>
14 …<span class="glyphicon glyphicon-question-sign get-help" title="The short name of the distribution…
16 <dd class="variable-list">
18 <span class="glyphicon glyphicon-edit" id="change-distro-icon"></span>
19 <form id="change-distro-form" class="form-inline" style="display:none;">
20 <div id="edit-distro-name-div" class="form-group">
21 <input type="text" class="form-control" id="new-distro" value="{{distro}}">
23 <button id="apply-change-distro" class="btn btn-default" type="button">Save</button>
24 <button id="cancel-change-distro" type="button" class="btn btn-link">Cancel</button>
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/dts/
H A Dsun4i-a10-inet9f-rev03.dts4 * This file is dual-licensed: you can use it either under the terms
43 /dts-v1/;
44 #include "sun4i-a10.dtsi"
45 #include "sunxi-common-regulators.dtsi"
46 #include <dt-bindings/gpio/gpio.h>
47 #include <dt-bindings/input/input.h>
48 #include <dt-bindings/interrupt-controller/irq.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
52 model = "iNet-9F Rev 03";
53 compatible = "inet-tek,inet9f-rev03", "allwinner,sun4i-a10";
[all …]

12345678910>>...48