Home
last modified time | relevance | path

Searched refs:Y (Results 1 – 25 of 202) sorted by relevance

123456789

/linux-4.19.296/drivers/media/dvb-frontends/
Dstv0367_priv.h38 #define MAX(X, Y) ((X) >= (Y) ? (X) : (Y)) argument
39 #define MIN(X, Y) ((X) <= (Y) ? (X) : (Y)) argument
40 #define INRANGE(X, Y, Z) \ argument
41 ((((X) <= (Y)) && ((Y) <= (Z))) || \
42 (((Z) <= (Y)) && ((Y) <= (X))) ? 1 : 0)
45 #define MAKEWORD(X, Y) (((X) << 8) + (Y)) argument
49 #define MSB(Y) (((Y) >> 8) & 0xff) argument
50 #define MMSB(Y)(((Y) >> 16) & 0xff) argument
DKconfig12 A DVB-S/S2/DSS Multistandard demodulator. Say Y when you want
21 demodulator. Say Y when you want to support this tuner.
29 Say Y when you want to support these frontends.
38 Say Y when you want to support these frontends.
54 Say Y when you want to support these frontends.
63 Say Y when you want to support these frontends.
71 Say Y when you want to support this frontend.
83 Say Y when you want to support this frontend.
92 Say Y when you want to support this tuner.
102 Say Y when you want to support this frontend.
[all …]
Dstv0900_priv.h27 #define INRANGE(X, Y, Z) ((((X) <= (Y)) && ((Y) <= (Z))) \ argument
28 || (((Z) <= (Y)) && ((Y) <= (X))) ? 1 : 0)
31 #define MAKEWORD(X, Y) (((X) << 8) + (Y)) argument
35 #define MSB(Y) (((Y) >> 8) & 0xFF) argument
/linux-4.19.296/include/math-emu/
Dop-2.h93 #define _FP_FRAC_ADD_2(R,X,Y) \ argument
94 __FP_FRAC_ADD_2(R##_f1, R##_f0, X##_f1, X##_f0, Y##_f1, Y##_f0)
96 #define _FP_FRAC_SUB_2(R,X,Y) \ argument
97 __FP_FRAC_SUB_2(R##_f1, R##_f0, X##_f1, X##_f0, Y##_f1, Y##_f0)
99 #define _FP_FRAC_DEC_2(X,Y) \ argument
100 __FP_FRAC_DEC_2(X##_f1, X##_f0, Y##_f1, Y##_f0)
118 #define _FP_FRAC_EQ_2(X, Y) (X##_f1 == Y##_f1 && X##_f0 == Y##_f0) argument
119 #define _FP_FRAC_GT_2(X, Y) \ argument
120 (X##_f1 > Y##_f1 || (X##_f1 == Y##_f1 && X##_f0 > Y##_f0))
121 #define _FP_FRAC_GE_2(X, Y) \ argument
[all …]
Dop-1.h52 #define _FP_FRAC_ADD_1(R,X,Y) (R##_f = X##_f + Y##_f) argument
53 #define _FP_FRAC_SUB_1(R,X,Y) (R##_f = X##_f - Y##_f) argument
54 #define _FP_FRAC_DEC_1(X,Y) (X##_f -= Y##_f) argument
62 #define _FP_FRAC_EQ_1(X, Y) (X##_f == Y##_f) argument
63 #define _FP_FRAC_GE_1(X, Y) (X##_f >= Y##_f) argument
64 #define _FP_FRAC_GT_1(X, Y) (X##_f > Y##_f) argument
127 #define _FP_MUL_MEAT_1_imm(wfracbits, R, X, Y) \ argument
129 R##_f = X##_f * Y##_f; \
138 #define _FP_MUL_MEAT_1_wide(wfracbits, R, X, Y, doit) \ argument
141 doit(_Z_f1, _Z_f0, X##_f, Y##_f); \
[all …]
Ddouble.h110 #define FP_ADD_D(R,X,Y) _FP_ADD(D,2,R,X,Y) argument
111 #define FP_SUB_D(R,X,Y) _FP_SUB(D,2,R,X,Y) argument
112 #define FP_MUL_D(R,X,Y) _FP_MUL(D,2,R,X,Y) argument
113 #define FP_DIV_D(R,X,Y) _FP_DIV(D,2,R,X,Y) argument
117 #define FP_CMP_D(r,X,Y,un) _FP_CMP(D,2,r,X,Y,un) argument
118 #define FP_CMP_EQ_D(r,X,Y) _FP_CMP_EQ(D,2,r,X,Y) argument
182 #define FP_ADD_D(R,X,Y) _FP_ADD(D,1,R,X,Y) argument
183 #define FP_SUB_D(R,X,Y) _FP_SUB(D,1,R,X,Y) argument
184 #define FP_MUL_D(R,X,Y) _FP_MUL(D,1,R,X,Y) argument
185 #define FP_DIV_D(R,X,Y) _FP_DIV(D,1,R,X,Y) argument
[all …]
Dquad.h116 #define FP_ADD_Q(R,X,Y) _FP_ADD(Q,4,R,X,Y) argument
117 #define FP_SUB_Q(R,X,Y) _FP_SUB(Q,4,R,X,Y) argument
118 #define FP_MUL_Q(R,X,Y) _FP_MUL(Q,4,R,X,Y) argument
119 #define FP_DIV_Q(R,X,Y) _FP_DIV(Q,4,R,X,Y) argument
123 #define FP_CMP_Q(r,X,Y,un) _FP_CMP(Q,4,r,X,Y,un) argument
124 #define FP_CMP_EQ_Q(r,X,Y) _FP_CMP_EQ(Q,4,r,X,Y) argument
189 #define FP_ADD_Q(R,X,Y) _FP_ADD(Q,2,R,X,Y) argument
190 #define FP_SUB_Q(R,X,Y) _FP_SUB(Q,2,R,X,Y) argument
191 #define FP_MUL_Q(R,X,Y) _FP_MUL(Q,2,R,X,Y) argument
192 #define FP_DIV_Q(R,X,Y) _FP_DIV(Q,2,R,X,Y) argument
[all …]
Dop-common.h229 #define _FP_ADD_INTERNAL(fs, wc, R, X, Y, OP) \ argument
231 switch (_FP_CLS_COMBINE(X##_c, Y##_c)) \
236 _FP_I_TYPE diff = X##_e - Y##_e; \
245 R##_e = Y##_e; \
252 _FP_FRAC_SRS_##wc(Y, diff, _FP_WFRACBITS_##fs); \
253 else if (!_FP_FRAC_ZEROP_##wc(Y)) \
254 _FP_FRAC_SET_##wc(Y, _FP_MINFRAC_##wc); \
261 if (X##_s == Y##_s) \
264 _FP_FRAC_ADD_##wc(R, X, Y); \
274 _FP_FRAC_SUB_##wc(R, X, Y); \
[all …]
Dop-4.h111 #define _FP_FRAC_ADD_4(R,X,Y) \ argument
114 Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
116 #define _FP_FRAC_SUB_4(R,X,Y) \ argument
119 Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
121 #define _FP_FRAC_DEC_4(X,Y) \ argument
123 Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
137 #define _FP_FRAC_EQ_4(X,Y) \ argument
138 (X##_f[0] == Y##_f[0] && X##_f[1] == Y##_f[1] \
139 && X##_f[2] == Y##_f[2] && X##_f[3] == Y##_f[3])
141 #define _FP_FRAC_GT_4(X,Y) \ argument
[all …]
Dsingle.h99 #define FP_ADD_S(R,X,Y) _FP_ADD(S,1,R,X,Y) argument
100 #define FP_SUB_S(R,X,Y) _FP_SUB(S,1,R,X,Y) argument
101 #define FP_MUL_S(R,X,Y) _FP_MUL(S,1,R,X,Y) argument
102 #define FP_DIV_S(R,X,Y) _FP_DIV(S,1,R,X,Y) argument
106 #define FP_CMP_S(r,X,Y,un) _FP_CMP(S,1,r,X,Y,un) argument
107 #define FP_CMP_EQ_S(r,X,Y) _FP_CMP_EQ(S,1,r,X,Y) argument
/linux-4.19.296/drivers/parisc/
DKconfig11 If in doubt, say "Y".
18 If in doubt, say "Y"
24 Say Y here to enable DMA management routines for the first
32 Say Y here to support the Lasi multifunction chip found in
43 Say Y here to support the Wax multifunction chip found in some
53 Say Y here if you have an EISA bus in your machine. This code
63 If you want to plug an ISA card into your EISA bus, say Y here.
69 All recent HP machines have PCI slots, and you should say Y here
73 so it may be safest to say "Y" anyway.
81 Say Y here to support the Dino & Cujo GSC to PCI bridges found in
[all …]
/linux-4.19.296/include/uapi/linux/
Dconst.h17 #define _AC(X,Y) X
20 #define __AC(X,Y) (X##Y) argument
21 #define _AC(X,Y) __AC(X,Y) argument
/linux-4.19.296/drivers/clk/qcom/
DKconfig22 Say Y if you want to support higher CPU frequencies on MSM8916
33 Say Y if you want to support CPU frequency scaling on devices
46 Say Y if you want to support the clocks exposed by the RPM on
59 Say Y if you want to support the clocks exposed by the RPM on
68 Say Y if you want to support the clocks exposed by RPMh on
77 Say Y if you want to use peripheral devices such as UART, SPI,
87 Say Y if you want to support multimedia devices such as display,
95 Say Y if you want to use peripheral devices such as UART, SPI,
103 Say Y if you want to use peripheral devices such as UART, SPI,
112 Say Y if you want to use audio devices such as i2s, pcm,
[all …]
/linux-4.19.296/drivers/media/rc/img-ir/
DKconfig7 Say Y or M here if you want to use the ImgTec infrared decoder
14 Say Y here to enable the raw mode driver which passes raw IR signal
24 Say Y here to enable the hardware decode driver which decodes the IR
33 Say Y here to enable support for the NEC, extended NEC, and 32-bit
40 Say Y here to enable support for the JVC protocol in the ImgTec
47 Say Y here to enable support for the Sony protocol in the ImgTec
54 Say Y here to enable support for the Sharp protocol in the ImgTec
61 Say Y here to enable support for the Sanyo protocol (used by Sanyo,
68 Say Y here to enable support for the RC5 protocol in the ImgTec
75 Say Y here to enable support for the RC6 protocol in the ImgTec
/linux-4.19.296/drivers/pci/hotplug/
DKconfig10 Say Y here if you have a motherboard with a PCI Hotplug controller.
22 Say Y here if you have a motherboard with a Compaq PCI Hotplug
34 Say Y here if you have a Compaq server that has a PCI Hotplug
44 Say Y here if you have a motherboard with a IBM PCI Hotplug
56 Say Y here if you have a system that supports PCI Hotplug using
65 Say Y here if you have an IBM system that supports PCI Hotplug using
76 Say Y here if you have a CompactPCI system card with CompactPCI
85 Say Y here if you have an Performance Technologies (formerly Intel,
97 Say Y here if you have a CompactPCI system card that exposes the #ENUM
109 Say Y here if you have a motherboard with a SHPC PCI Hotplug
[all …]
/linux-4.19.296/block/partitions/
DKconfig8 Say Y here if you would like to use hard disks under Linux which
29 Say Y here if you would like to use hard disks under Linux which
42 Say Y here if you would like to use hard disks under Linux which
53 `Y' here, Linux will support disk partitions created under ADFS.
69 of machines called RISCiX. If you say 'Y' here, Linux will be able
75 Say Y here if you would like to be able to read the hard disk
87 Say Y here if you would like to use hard disks under Linux which
94 Say Y here if you would like to use hard disks under Linux which
101 Say Y here if you would like to use hard disks under Linux which
108 Say Y here if you would like to be able to read the hard disk
[all …]
/linux-4.19.296/drivers/bluetooth/
DKconfig31 Say Y here to compile support for Bluetooth USB devices into the
38 Say Y here to enable USB autosuspend for Bluetooth USB devices by
53 Say Y here to compile support for Broadcom protocol.
64 Say Y here to compile support for Realtek protocol.
74 Say Y here to compile support for Bluetooth SDIO devices into the
89 Say Y here to compile support for Bluetooth UART devices into the
105 Say Y here to compile support for HCI UART (H4) protocol.
120 Say Y here to compile support for Nokia's H4+ protocol.
132 Say Y here to compile support for HCI BCSP protocol.
145 Say Y here to compile support for HCI UART ATH3K protocol.
[all …]
/linux-4.19.296/drivers/pci/controller/
DKconfig35 Say Y here if you want to support the Cadence PCIe controller in host
45 Say Y here if you want to support the Cadence PCIe controller in
56 Say 'Y' here if you want kernel support for Xilinx
71 Say Y here if you want support for the PCIe host controller found
79 Say Y here if you want internal PCI support on R-Car Gen2 SoC.
88 Say Y here if you want PCIe controller support on R-Car SoCs.
100 Say Y here if you want to support a simple generic PCI host
107 Say 'Y' here if you want kernel to support the Xilinx AXI PCIe
115 Say Y here if you want internal PCI support on APM X-Gene SoC.
125 Say Y here if you want PCIe MSI support for the APM X-Gene v1 SoC.
[all …]
/linux-4.19.296/drivers/media/usb/dvb-usb-v2/
DKconfig14 Say Y if you own a USB DVB device.
30 Say Y here to support the Afatech AF9015 based DVB-T USB2.0 receiver
43 Say Y here to support the Afatech AF9035 based DVB USB receiver.
59 Say Y here to support the Anysee E30, Anysee E30 Plus or
68 Say Y here to support the Sigmatek DVB-110 DVB-T USB2.0 receiver.
77 Say Y here to support the AZ6007 receivers like Terratec H7.
85 Say Y here to support the Intel CE6230 DVB-T USB2.0 receiver
93 Say Y here to support the E3C EC168 DVB-T USB2.0 receiver.
103 Say Y here to support the MSI Megasky 580 (55801) DVB-T USB2.0
120 Say Y here to support the LME DM04/QQBOX DVB-S USB2.0
[all …]
/linux-4.19.296/drivers/parport/
DKconfig22 machines) etc., then you need to say Y here; please read
38 If unsure, say Y.
46 You should say Y here if you have a PC-style parallel port. All
48 parallel ports. PA-RISC owners should only say Y here if they
54 If unsure, say Y.
61 serial ports. You should say Y or M here. If you say M, the module
69 printing. Say Y here if you want to take advantage of that.
81 Saying Y here enables some probes for Super-IO chipsets in order to
89 Say Y here if you need PCMCIA support for your PC-style parallel
97 Say Y here if you need support for the parallel port on
[all …]
/linux-4.19.296/fs/nls/
DKconfig13 If unsure, say Y.
48 say Y here if you want to include the DOS codepage that is used in
60 say Y here if you want to include the DOS codepage that is used for
72 say Y here if you want to include the DOS codepage that is used
85 say Y here if you want to include the DOS codepage that is used for
90 If unsure, say Y.
101 say Y here if you want to include the Latin 2 codepage used by DOS
116 say Y here if you want to include the DOS codepage for Cyrillic.
127 say Y here if you want to include the DOS codepage for Turkish.
138 say Y here if you want to include the DOS codepage for Portuguese.
[all …]
/linux-4.19.296/drivers/isdn/capi/
DKconfig5 If you say Y here, the kernelcapi driver can make verbose traces
9 If unsure, say Y.
17 Y/M here.
27 your ISP, say Y here.
36 ippp interfaces or ttyI emulation, say Y/M here.
42 If you say Y here, the capidrv interface will give verbose reasons
/linux-4.19.296/fs/fat/
DKconfig6 VFAT (Windows 95) file systems), then you must say Y or M here
13 the foundation for the other file systems. You will have to say Y or
19 mtools ("man mtools") program suite. You don't need to say Y here in
23 Linux box, say Y here, mount the floppy under Linux with an MSDOS
28 say Y.
45 intend to use dosemu with a non-compressed MSDOS partition, say Y
51 partitions, you should use the VFAT file system (say Y to "VFAT fs
56 answer Y. This will only work if you said Y to "DOS FAT fs support"
70 works if you said Y to the "DOS FAT fs support" above. Please read
72 unsure, say Y.
[all …]
/linux-4.19.296/drivers/char/hw_random/
DKconfig19 If unsure, say Y.
35 If unsure, say Y.
48 If unsure, say Y.
61 If unsure, say Y.
74 If unsure, say Y.
88 If unsure, say Y.
101 If unsure, say Y.
114 If unsure, say Y.
127 If unsure, say Y.
140 If unsure, say Y.
[all …]
/linux-4.19.296/drivers/iio/proximity/
DKconfig13 Say Y here to build SPI interface support for the Austrian
30 Say Y here if you want to build a driver for the Intersil ISL29501
42 Say Y to build a driver for PulsedLight LIDAR range finding
52 Say Y to build a driver for the RFD77420 Time-of-Flight (distance)
62 Say Y here to build a driver for Devantech SRF04 ultrasonic
76 Say Y here to build a driver for Semtech's SX9500 capacitive
88 Say Y here to build a driver for Devantech SRF02/SRF08/SRF10

123456789