Home
last modified time | relevance | path

Searched refs:input (Results 1 – 25 of 204) sorted by relevance

123456789

/linux-2.4.37.9/crypto/
Dtcrypt.h53 char input[48]; member
818 .input = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xe7 },
825 .input = { 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99 },
832 .input = { 0x01, 0xa1, 0xd6, 0xd0, 0x39, 0x77, 0x67, 0x42 },
839 .input = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xe7,
852 .input = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xe7 },
859 .input = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xe7,
870 .input = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xe7,
885 .input = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xe7,
898 .input = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xe7,
[all …]
Dsha512.c105 static inline void LOAD_OP(int I, u64 *W, const u8 *input) in LOAD_OP() argument
107 u64 t1 = input[(8*I) ] & 0xff; in LOAD_OP()
109 t1 |= input[(8*I)+1] & 0xff; in LOAD_OP()
111 t1 |= input[(8*I)+2] & 0xff; in LOAD_OP()
113 t1 |= input[(8*I)+3] & 0xff; in LOAD_OP()
115 t1 |= input[(8*I)+4] & 0xff; in LOAD_OP()
117 t1 |= input[(8*I)+5] & 0xff; in LOAD_OP()
119 t1 |= input[(8*I)+6] & 0xff; in LOAD_OP()
121 t1 |= input[(8*I)+7] & 0xff; in LOAD_OP()
131 sha512_transform(u64 *state, const u8 *input) in sha512_transform() argument
[all …]
/linux-2.4.37.9/drivers/usb/
Dhid-input.c81 return &hidinput->input; in find_input()
87 return &hidinput->input; in find_input()
97 struct input_dev *input = &hidinput->input; in hidinput_configure_usage() local
98 struct hid_device *device = hidinput->input.private; in hidinput_configure_usage()
106 set_bit(EV_REP, input->evbit); in hidinput_configure_usage()
107 usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX; in hidinput_configure_usage()
121 usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX; in hidinput_configure_usage()
143 usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX; in hidinput_configure_usage()
151 usage->type = EV_KEY; bit = input->keybit; max = KEY_MAX; in hidinput_configure_usage()
156 usage->type = EV_REL; bit = input->relbit; max = REL_MAX; in hidinput_configure_usage()
[all …]
Dpowermate.c62 struct input_dev input; member
87 input_report_key(&pm->input, BTN_0, pm->data[0] & 0x01); in powermate_irq()
88 input_report_rel(&pm->input, REL_DIAL, pm->data[1]); in powermate_irq()
289 case POWERMATE_PRODUCT_NEW: pm->input.name = pm_name_powermate; break; in powermate_probe()
290 case POWERMATE_PRODUCT_OLD: pm->input.name = pm_name_soundknob; break; in powermate_probe()
292 pm->input.name = pm_name_soundknob; in powermate_probe()
296 pm->input.private = pm; in powermate_probe()
297 pm->input.evbit[0] = BIT(EV_KEY) | BIT(EV_REL) | BIT(EV_MSC); in powermate_probe()
298 pm->input.keybit[LONG(BTN_0)] = BIT(BTN_0); in powermate_probe()
299 pm->input.relbit[LONG(REL_DIAL)] = BIT(REL_DIAL); in powermate_probe()
[all …]
Dkonicawc.c121 struct input_dev input; member
275 input_report_key(&cam->input, BTN_0, cam->buttonsts); in konicawc_compress_iso()
843 memset(&cam->input, 0, sizeof(struct input_dev)); in konicawc_probe()
844 cam->input.name = "Konicawc snapshot button"; in konicawc_probe()
845 cam->input.private = cam; in konicawc_probe()
846 cam->input.evbit[0] = BIT(EV_KEY); in konicawc_probe()
847 cam->input.keybit[LONG(BTN_0)] = BIT(BTN_0); in konicawc_probe()
848 cam->input.idbus = BUS_USB; in konicawc_probe()
849 cam->input.idvendor = dev->descriptor.idVendor; in konicawc_probe()
850 cam->input.idproduct = dev->descriptor.idProduct; in konicawc_probe()
[all …]
/linux-2.4.37.9/drivers/macintosh/
Dadbhid.c78 struct input_dev input; member
158 input_report_key(&adbhid[id]->input, KEY_CAPSLOCK, 1); in adbhid_input_keycode()
159 input_report_key(&adbhid[id]->input, KEY_CAPSLOCK, 0); in adbhid_input_keycode()
177 input_report_key(&adbhid[id]->input, in adbhid_input_keycode()
268 input_report_key(&adbhid[id]->input, BTN_LEFT, !((data[1] >> 7) & 1)); in adbhid_mouse_input()
269 input_report_key(&adbhid[id]->input, BTN_MIDDLE, !((data[2] >> 7) & 1)); in adbhid_mouse_input()
272 input_report_key(&adbhid[id]->input, BTN_RIGHT, !((data[3] >> 7) & 1)); in adbhid_mouse_input()
274 input_report_rel(&adbhid[id]->input, REL_X, in adbhid_mouse_input()
276 input_report_rel(&adbhid[id]->input, REL_Y, in adbhid_mouse_input()
309 input_report_key(&adbhid[id]->input, KEY_MUTE, down); in adbhid_buttons_input()
[all …]
/linux-2.4.37.9/fs/hfsplus/
Doptions.c52 static int fill_fourchar(u32 *result, char *input) in fill_fourchar() argument
57 if (!result || !input || !*input || (strlen(input) != 4)) in fill_fourchar()
62 out |= ((int)(input[i])) & 0xFF; in fill_fourchar()
69 static int fill_int(int *result, char *input, int base) in fill_int() argument
71 char *tmp = input; in fill_int()
74 if (!result || !input || !*input) in fill_int()
87 int parse_options(char *input, struct hfsplus_sb_info *results) in parse_options() argument
92 if (!input) in parse_options()
95 while ((curropt = strsep(&input,",")) != NULL) { in parse_options()
/linux-2.4.37.9/Documentation/input/
Dinput-programming.txt1 $Id: input-programming.txt,v 1.4 2001/05/04 09:47:14 vojtech Exp $
3 Programming input drivers
6 1. Creating an input device driver
12 Here comes a very simple example of an input device driver. The device has
16 #include <linux/input.h>
53 First it has to include the <linux/input.h> file, which interfaces to the
54 input subsystem. This provides all the definitions needed.
60 Then it sets the input bitfields. This way the device driver tells the other
61 parts of the input systems what it is - what events can be generated or
62 accepted by this input device. Our example device can only generate EV_KEY type
[all …]
Dff.txt9 goal is not to support these devices as if they were simple input-only devices
22 driver is the normal iforce.o, input.o and evdev.o drivers written by Vojtech
50 Please check that you have all the /dev/input entries needed:
53 mkdir input
54 mknod input/js0 c 13 0
55 mknod input/js1 c 13 1
56 mknod input/js2 c 13 2
57 mknod input/js3 c 13 3
58 ln -s input/js0 js0
59 ln -s input/js1 js1
[all …]
Dinput.txt4 $Id: input.txt,v 1.5 2001/06/06 11:05:33 vojtech Exp $
32 This is a collection of drivers that is designed to support all input
37 The center of the input drivers is the input.o module, which must be
38 loaded before any other of the input modules - it serves as a way of
44 events (keystrokes, mouse movements) to the input.o module.
48 These modules get events from input.o and pass them where needed via
58 input.o
74 mkdir input
75 mknod input/mice c 13 63
80 gpm -t ps2 -m /dev/input/mice
[all …]
Djoystick.txt34 input devices in Linux.
40 The input project website is at:
42 http://www.suse.cz/development/input/
43 http://atrey.karlin.mff.cuni.cz/~vojtech/input/
69 mkdir input
70 mknod input/js0 c 13 0
71 mknod input/js1 c 13 1
72 mknod input/js2 c 13 2
73 mknod input/js3 c 13 3
74 ln -s input/js0 js0
[all …]
/linux-2.4.37.9/drivers/block/
Delevator.c200 blkelv_ioctl_arg_t input; in blkelvset_ioctl() local
202 if (copy_from_user(&input, arg, sizeof(blkelv_ioctl_arg_t))) in blkelvset_ioctl()
205 if (input.read_latency < 0) in blkelvset_ioctl()
207 if (input.write_latency < 0) in blkelvset_ioctl()
210 elevator->read_latency = input.read_latency; in blkelvset_ioctl()
211 elevator->write_latency = input.write_latency; in blkelvset_ioctl()
/linux-2.4.37.9/drivers/sound/emu10k1/
Defxmgr.h62 unsigned long input; /* bitmap of the lines used as inputs */ member
174 patch->input = (1<<(0x1f&ln)); \
198 #define CONNECT(input, output) set_bit(input, &rpatch->route[(output) - OUTPUT_BASE]); argument
200 #define CONNECT_V(input, output) set_bit(input, &rpatch->route_v[(output) - OUTPUT_BASE]); argument
207 patch->input = (1<<(0x1f&ln)); \
/linux-2.4.37.9/drivers/media/video/
Dvino.c78 unsigned int input; member
262 if (v->input == VINO_INPUT_CAMERA) in get_capture_norm()
414 if (v->input == VINO_INPUT_CAMERA) in dma_setup()
434 if (v->input == VINO_INPUT_CAMERA) in dma_setup()
696 v->input = VINO_INPUT_CAMERA; in vino_open()
705 v->input = VINO_INPUT_COMP; in vino_open()
706 i2c_decoder_command(DECODER_SET_INPUT, &v->input); in vino_open()
708 v->input = (v->chan == VINO_CHAN_A) ? in vino_open()
709 Vino->chB.input : Vino->chA.input; in vino_open()
711 if (v->input == -1) in vino_open()
[all …]
Dsaa7111.c51 int input; member
176 decoder->input = 0; in saa7111_attach()
317 if (decoder->input != *iarg) { in saa7111_command()
318 decoder->input = *iarg; in saa7111_command()
323 decoder->input); in saa7111_command()
328 ((decoder->input > in saa7111_command()
363 decoder->input); in saa7111_command()
Dadv7175.c67 int input; member
235 encoder->input = 0; in adv7175_attach()
294 if (encoder->input == 0) in adv7175_command()
307 if (encoder->input == 0) in adv7175_command()
324 if (encoder->input == 0) in adv7175_command()
354 if (encoder->input != iarg) { in adv7175_command()
403 encoder->input = iarg; in adv7175_command()
/linux-2.4.37.9/arch/m68k/fpsp040/
Dbindec.S7 | Converts an input in extended precision format
11 | a0 points to the input extended precision value
13 | to 32-bits. The input may be either normalized,
22 | A1. Set RM and size ext; Set SIGMA = sign of input.
25 | input. If input is unnormalized or denormalized,
28 | A2. Set X = abs(input).
31 | ILOG is the log base 10 of the input value. It is
94 | mantissa to bcd in memory. The input to binstr is
112 | d0: scratch; LEN input to binstr
169 | A1. Set RM and size ext. Set SIGMA = sign input;
[all …]
Dsgetem.S5 | of the input argument. The exponent bias is removed
11 | input argument. The mantissa is converted to an
41 | handler. It points a0 to the input operand.
67 | handler. It points a0 to the input operand.
106 | input:
/linux-2.4.37.9/Documentation/sound/
Dvwsnd28 input. The CD audio lines are connected to the AD1843's AUX2 input.
29 The microphone jack is connected to the AD1843's MIC input. The mic
31 MIC inputs. You can record in stereo from the mic input, but you will
33 accuracy). Full scale on the Line input is +/- 2.0 V. Full scale on
34 the MIC input is 20 dB less, or +/- 0.2 V.
41 The AD1843's PCM input channel and one of its output channels (DAC1)
48 The AD1843 has PCM input and output (Pulse Code Modulation, also known
49 as wavetable). PCM input and output can be mono or stereo in any of
54 The AD1843 includes an analog mixer that can mix all three input
56 separate gain control and mute switch for each input.
[all …]
/linux-2.4.37.9/Documentation/usb/
Dhiddev.txt5 In addition to the normal input type HID devices, USB also uses the
13 * the input subsystem, which converts HID events into normal input
15 normalised event interface - see Documentation/input/input.txt
21 usb.c ---> hid.c ----> input.c ----> [keyboard/mouse/joystick/event]
27 events into the input subsystem, but these have no effect on the hid
108 Instructs the kernel to retrieve all input and feature report values
117 Instructs the kernel to get a feature or input report from the device,
129 looked up by type (input, output or feature) and id, so these fields
/linux-2.4.37.9/drivers/input/
DMakefile11 export-objs := input.o
22 obj-$(CONFIG_INPUT) += input.o
/linux-2.4.37.9/Documentation/kbuild/
Dconfig-language.txt39 'Menuconfig' is another bash script. It scans the input files with a
224 and assigns that value to /symbol/. The legal input values are "n" and
249 input value. /word/ is the default value.
269 Any decimal number is a legal input value.
290 input values are any ASCII string, except for the characters '"' and '\\'.
291 Configure will trap an input string of "?" to display help.
395 This verb assigns the value of /word/ to /symbol/. Legal input values
412 This verb assigns the value of /word/ to /symbol/. Legal input values
442 Any dependency which has a value of "y" does not restrict the input
445 (like "m") restricts the input range to "n". Quoting dependencies is not
[all …]
/linux-2.4.37.9/Documentation/BK-usage/
D00-INDEX16 bz64wrap: helper script. Uncompressed input is piped to this script,
17 which compresses its input, and then outputs the uu-/base64-encoded
18 version of the compressed input.
/linux-2.4.37.9/arch/m68k/ifpsp060/src/
Dfplsp.S572 # copy, convert, and tag input argument
574 fmov.s 0x8(%a6),%fp0 # load sgl input
629 # copy, convert, and tag input argument
631 fmov.d 0x8(%a6),%fp0 # load dbl input
687 # copy, convert, and tag input argument
690 mov.l 0x8+0x0(%a6),0x0(%a0) # load ext input
749 # copy, convert, and tag input argument
751 fmov.s 0x8(%a6),%fp0 # load sgl input
806 # copy, convert, and tag input argument
808 fmov.d 0x8(%a6),%fp0 # load dbl input
[all …]
/linux-2.4.37.9/Documentation/s390/
D3270.ChangeLog7 screen height to omit the two rows used for input area, in
10 Sep 2002: Dynamically get 3270 input buffer
12 so get input-area buffer dynamically when sizing the device in

123456789